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

28
qbe/PKGBUILD Normal file
View File

@@ -0,0 +1,28 @@
# Maintainer: Jesus E. <heckyel@riseup.net>
pkgname=qbe
pkgver=1.1
pkgrel=1
pkgdesc="Small and free software embeddable C compiler backend"
arch=('i686' 'x86_64')
url='https://c9x.me/compile/'
license=('Expat')
depends=('glibc')
source=("https://c9x.me/compile/release/${pkgname}-${pkgver}.tar.xz")
sha512sums=('1e5d7d1df3d73849dbf19dd1d84c9bba63a5041622823a5a239496032f9d82bd1640dd2bbd03e28c8a180b8e66a1fe10deb940b5d8fde996bf593f7e8d943e8b')
build() {
cd $pkgname-$pkgver
make
}
package() {
cd $pkgname-$pkgver
make DESTDIR="$pkgdir" PREFIX=/usr install
# documentation
install -vDm644 -t "$pkgdir/usr/share/doc/$pkgname" doc/*
# license
install -vDm644 -t "$pkgdir/usr/share/licenses/$pkgname" LICENSE
}