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
libxrender/PKGBUILD Normal file
View File

@@ -0,0 +1,34 @@
# Maintainer: Jesus E. <heckyel@riseup.net>
pkgname=libxrender
_openbsdver=6.9
pkgver=0.9.10
pkgrel=3
pkgdesc="X Rendering Extension client library, provided by Xenocara"
arch=('i686' 'x86_64')
url="https://www.xenocara.org"
license=('Expat')
depends=('libx11>=1.3.4' 'xenocara-proto')
makedepends=('pkg-config' 'xenocara-util-macros')
source=(https://repo.hyperbola.info:50000/sources/xenocara-libre/$_openbsdver/lib/libxrender-$pkgver.tar.lz{,.sig})
sha512sums=('490bc5873d4d9ae74c901c56fee5a8ebb2cd5020a1c1edad527bf0415dd0ba3b8d5405b67e2cc04bd155be7c4cda1c7e5bc201a1586266ce6475d3edcd85bd89'
'SKIP')
validpgpkeys=('C92BAA713B8D53D3CAE63FC9E6974752F9704456') # André Silva
prepare() {
cd "xenocara-$_openbsdver/lib/libXrender"
autoreconf -vfi
}
build() {
cd "xenocara-$_openbsdver/lib/libXrender"
./configure --prefix=/usr --disable-static
make
}
package() {
cd "xenocara-$_openbsdver/lib/libXrender"
make DESTDIR="$pkgdir" install
install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
}