initial import

This commit is contained in:
2025-06-22 20:39:04 -05:00
commit f8a70886f0
3428 changed files with 302546 additions and 0 deletions

40
libxcursor/PKGBUILD Normal file
View File

@@ -0,0 +1,40 @@
# Maintainer: Jesus E. <heckyel@riseup.net>
pkgname=libxcursor
_openbsdver=6.9
pkgver=1.2.0
pkgrel=2
pkgdesc="X cursor management library, provided by Xenocara"
arch=(i686 x86_64)
url="https://www.xenocara.org"
license=('Expat')
depends=('libxfixes' 'libxrender')
optdepends=('gnome-themes-standard: fallback icon theme')
makedepends=('xenocara-util-macros')
backup=(usr/share/icons/default/index.theme)
source=(https://repo.hyperbola.info:50000/sources/xenocara-libre/$_openbsdver/lib/libxcursor-$pkgver.tar.lz{,.sig}
index.theme)
sha512sums=('e50d118c7f07977c3f4cf03b4a562e5e4e1ac0081e721861503ed435723f28a15b6def1ba62f0bfce06a851895208eb54639a05778f9ce32c52f2a154151eab7'
'SKIP'
'489a07b5c9c50b9ddbd10093c79a07d34f2f1c9b4f053ecd68a9f300e201f7b92890b92f0bb4963dfeaa1b158f43149d615b07d1e70523de41565eff7dd5fccb')
validpgpkeys=('C92BAA713B8D53D3CAE63FC9E6974752F9704456') # André Silva
prepare() {
cd "xenocara-$_openbsdver/lib/libXcursor"
autoreconf -vfi
}
build() {
cd "xenocara-$_openbsdver/lib/libXcursor"
./configure --prefix=/usr --sysconfdir=/etc --disable-static
make
}
package() {
cd "xenocara-$_openbsdver/lib/libXcursor"
make DESTDIR="$pkgdir" install
install -Dm644 "$srcdir/index.theme" "$pkgdir/usr/share/icons/default/index.theme"
install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
}