From c18c96ef938189189cc8ea850427cbdfb2b18bfa Mon Sep 17 00:00:00 2001 From: Yingjie Wang Date: Thu, 8 Jan 2026 16:25:52 -0500 Subject: [PATCH] new bblfs: gui-libs/hyprcursor-0.1.12 --- gui-libs/hyprcursor-0.1.12.PKGBUILD | 36 +++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 gui-libs/hyprcursor-0.1.12.PKGBUILD diff --git a/gui-libs/hyprcursor-0.1.12.PKGBUILD b/gui-libs/hyprcursor-0.1.12.PKGBUILD new file mode 100644 index 0000000..06793e5 --- /dev/null +++ b/gui-libs/hyprcursor-0.1.12.PKGBUILD @@ -0,0 +1,36 @@ +pkgname=hyprcursor +pkgver=0.1.12 +pkgdesc='The hyprland cursor format, library and utilities' +arch=(x86_64 aarch64) +homepage="https://github.com/hyprwm/$pkgname" +license=(BSD-3-Clause) +depends=(cairo + gcc + glibc + hyprlang + librsvg + libzip + tomlplusplus +) +makedepends=(cmake) +sources=("${pkgname}-${pkgver}.tar.gz") +urls=("https://github.com/hyprwm/${pkgname}/archive/v${pkgver}.tar.gz") +md5sums=("524d7ff3aa1c97924414b207416c1c32") + +src_prepare() { + tar -xf ${distdir}/${sources[0]} --strip-components=1 +} + +src_build() { + cmake -B build \ + -D CMAKE_INSTALL_PREFIX=/usr \ + -D CMAKE_BUILD_TYPE=Release + cmake --build build +} + +src_install() { + DESTDIR="$pkgdir" cmake --install build + install -Dm0644 -t "$pkgdir/usr/share/licenses/$pkgname" LICENSE +} + +# vim:ft=sh syn=sh et sw=2: