pkgs/gzip/PKGBUILD

25 lines
485 B
Bash
Raw Normal View History

2023-12-08 03:28:18 +00:00
# Maintainer: Daryl Ronningen <relms@relms.dev>
pkgname=gzip
pkgver=1.13
pkgrel=1
pkgdesc="GNU compression utility"
arch=("x86_64")
url="https://www.gnu.org/software/gzip/"
license=("GPL-3.0-or-later")
source=("https://ftp.gnu.org/pub/gnu/gzip/gzip-$pkgver.tar.xz")
sha256sums=("7454eb6935db17c6655576c2e1b0fabefd38b4d0936e0f87f48cd062ce91a057")
build() {
cd $pkgname-$pkgver
./configure --prefix=/usr
make
}
package() {
cd $pkgname-$pkgver
make prefix=$pkgdir/usr install
}