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

@@ -0,0 +1,34 @@
# Maintainer: Jesus E. <heckyel@riseup.net>
pkgname=expac
pkgver=10
pkgrel=2
pkgdesc="pacman database extraction utility"
arch=('i686' 'x86_64')
url='https://github.com/falconindy/expac'
license=('Expat')
depends=('pacman')
makedepends=('perl' 'meson')
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/falconindy/expac/archive/refs/tags/${pkgver}.tar.gz")
sha512sums=('3ff2868a2c734b6e68091ebd8f733709b9846031f1d1c20794385262a1e245ed920342428316b2716a995bd9da81c41c668dc12a7d99c82eece006c7b84f843d')
prepare() {
cd ${pkgname}-${pkgver}
sed '/\*\//q' src/expac.c >LICENSE
}
build() {
cd ${pkgname}-${pkgver}
meson build
ninja -C build
}
package() {
cd ${pkgname}-${pkgver}
DESTDIR=$pkgdir ninja -C build install
install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}