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

34
libxdamage/PKGBUILD Normal file
View File

@@ -0,0 +1,34 @@
# Maintainer: Jesus E. <heckyel@riseup.net>
pkgname=libxdamage
_openbsdver=6.9
pkgver=1.1.5
pkgrel=2
pkgdesc="X11 damaged region extension library, provided by Xenocara"
arch=('i686' 'x86_64')
url="https://www.xenocara.org"
license=('Expat')
depends=('libxfixes>=5.0.3' 'xenocara-proto')
makedepends=('pkg-config' 'xenocara-util-macros')
source=(https://repo.hyperbola.info:50000/sources/xenocara-libre/$_openbsdver/lib/libxdamage-$pkgver.tar.lz{,.sig})
sha512sums=('7f65057af38f8a5bf9d488382ba461d24a2a556221e2325efd4efef913b098a58ea5bba72489041946e33c1b52622567af0503db19181faa4d237fd47510a276'
'SKIP')
validpgpkeys=('C92BAA713B8D53D3CAE63FC9E6974752F9704456') # André Silva
prepare() {
cd "xenocara-$_openbsdver/lib/libXdamage"
autoreconf -vfi
}
build() {
cd "xenocara-$_openbsdver/lib/libXdamage"
./configure --prefix=/usr --sysconfdir=/etc --disable-static
make
}
package() {
cd "xenocara-$_openbsdver/lib/libXdamage"
make DESTDIR="$pkgdir" install
install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
}