blob: 4588d15f1e7c42fc29adf3e031210907c63110cd (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
pkgname=gzip
pkgver=1.9
pkgrel=1
pkgdesc='Data compression program'
arch=('x86_64')
url='https://www.gnu.org/software/gzip'
license=('GPL3')
groups=('base')
depends=()
options=()
source=("https://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.xz")
md5sums=('9492c6ccb2239ff679a5475a7bb543ed')
build() {
cd $pkgname-$pkgver
./configure --prefix=$BUILD_PREFIX
make
}
check() {
cd $pkgname-$pkgver
#make check
}
package() {
cd $pkgname-$pkgver
make DESTDIR="$pkgdir" install
fix_rpath
}
# vim:set ts=2 sw=2 et:
|