51 lines
1.3 KiB
Text
51 lines
1.3 KiB
Text
# Maintainer: Sébastien "Seblu" Luttringer <seblu@archlinux.org>
|
|
# Contributor: Allan McRae <allan@archlinux.org>
|
|
# Contributor: judd <jvinet@zeroflux.org>
|
|
|
|
pkgname=gzip
|
|
pkgver=1.13
|
|
pkgrel=4
|
|
pkgdesc='GNU compression utility'
|
|
arch=('x86_64')
|
|
url='https://www.gnu.org/software/gzip/'
|
|
license=('GPL-3.0-or-later')
|
|
depends=('glibc' 'bash' 'coreutils' 'sed' 'grep')
|
|
makedepends=('less')
|
|
optdepends=('less: zless support'
|
|
'util-linux: zmore support'
|
|
'diffutils: zdiff/zcmp support'
|
|
)
|
|
validpgpkeys=('155D3FC500C834486D1EEA677FD9FCCB000BEEEE') # Jim Meyering
|
|
source=("https://ftp.gnu.org/pub/gnu/gzip/gzip-$pkgver.tar.xz"{,.sig})
|
|
sha256sums=('7454eb6935db17c6655576c2e1b0fabefd38b4d0936e0f87f48cd062ce91a057'
|
|
'SKIP')
|
|
prepare() {
|
|
cd $pkgname-$pkgver
|
|
# apply patch from the source array (should be a pacman feature)
|
|
local filename
|
|
for filename in "${source[@]}"; do
|
|
if [[ "$filename" =~ \.patch$ ]]; then
|
|
echo "Applying patch ${filename##*/}"
|
|
patch -p1 -N -i "$srcdir/${filename##*/}"
|
|
fi
|
|
done
|
|
:
|
|
}
|
|
|
|
build() {
|
|
cd $pkgname-$pkgver
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
check() {
|
|
cd $pkgname-$pkgver
|
|
make check
|
|
}
|
|
|
|
package() {
|
|
cd $pkgname-$pkgver
|
|
make prefix="$pkgdir/usr" install
|
|
}
|
|
|
|
# vim:set ts=2 sw=2 et:
|