zlib: deprecate add zlib-ng

This commit is contained in:
Ella-0 2021-07-31 09:22:10 +00:00
parent 4875f10fa5
commit bb882a72a6
2 changed files with 36 additions and 0 deletions

31
pkgs/zlib-ng/build.sh Normal file
View file

@ -0,0 +1,31 @@
pkgname=zlib-ng
pkgver=2.0.5
fetch() {
curl -L "https://github.com/zlib-ng/zlib-ng/archive/refs/tags/$pkgver.tar.gz" -o $pkgname-$pkgver.tar.xz
tar -xf $pkgname-$pkgver.tar.xz
mkdir $pkgname-$pkgver/build
}
build() {
cd $pkgname-$pkgver
cd build
cmake -G Ninja ../ \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_INSTALL_LIBDIR=lib \
-DZLIB_COMPAT=ON
samu
}
package() {
cd $pkgname-$pkgver
cd build
DESTDIR=$pkgdir samu install
}
license() {
cd $pkgname-$pkgver
cat LICENSE.md
}

View file

@ -9,6 +9,11 @@ fetch() {
}
build() {
echo "============="
echo " DEPRECATED: "
echo " USE ZLIB-NG "
echo "============="
cd $pkgname-$pkgver
./configure \
--prefix=/usr