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

37
pigz/PKGBUILD Normal file
View File

@@ -0,0 +1,37 @@
# Maintainer: Jesus E. <heckyel@riseup.net>
pkgname=pigz
pkgver=2.6
_debver=$pkgver
_debrel=1
pkgrel=2
pkgdesc="Parallel implementation of the gzip file compressor"
arch=('i686' 'x86_64')
url='https://www.zlib.net/pigz'
license=('zlib')
depends=('zlib')
source=("${pkgname}-${pkgver}.tar.xz::https://deb.debian.org/debian/pool/main/p/pigz/pigz_${pkgver}.orig.tar.xz"
"LICENSE::https://metadata.ftp-master.debian.org/changelogs/main/p/pigz/pigz_${_debver}-${_debrel}_copyright")
sha512sums=('4384210fd6e48e407502b00654ec1cf713b44727d4020c1c1bbed117ecfd45169b4a8a94e6a7adbd7d55f85690ececf299c5ca3d5d4eabfea0844ebdc0e67577'
'617e7e4ed247ae224bd782dda4b565c4cc2e8d4deb52a5f357b4533e6bdd077d4d5c00baeec05f9ff30f523e742cf8164ea528b34ff6d2b3868235592894cc6d')
build() {
cd $pkgname-$pkgver
make
}
package() {
cd $pkgname-$pkgver
install -Dm755 "$srcdir"/$pkgname-$pkgver/$pkgname "$pkgdir"/usr/bin/$pkgname
pushd "$pkgdir"/usr/bin
ln -s pigz unpigz
popd
install -Dm644 "$srcdir"/$pkgname-$pkgver/$pkgname.1 -t "$pkgdir"/usr/share/man/man1
install -Dm644 "$srcdir"/$pkgname-$pkgver/$pkgname.pdf -t "$pkgdir"/usr/share/doc/$pkgname
install -Dm644 "$srcdir"/$pkgname-$pkgver/README -t "$pkgdir"/usr/share/licenses/$pkgname
install -Dm644 "$srcdir"/LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname
}