Added gzip

This commit is contained in:
2025-09-21 12:15:10 +01:00
parent 1caca7e209
commit 8116844f3c

23
arch/gzip/PKGCONF Normal file
View File

@@ -0,0 +1,23 @@
VERSION=1.14
PACKAGE=gzip
SRC=${PACKAGE}-${VERSION}.tar.gz
URL=${SITE_GNU}/${PACKAGE}/${SRC}
CATEGORY=arch
configure() {
echo "Configuring $PACKAGE"
cd "${SRCDIR}/${PACKAGE}-${VERSION}"
./configure
}
build() {
echo "Building $PACKAGE"
cd "${SRCDIR}/${PACKAGE}-${VERSION}"
make -j ${NCPU}
}
install() {
echo "Installing $PACKAGE to ${DESTDIR}"
cd "${SRCDIR}/${PACKAGE}-${VERSION}"
make install DESTDIR="${DESTDIR}"
}