lots of stuffs

This commit is contained in:
Ella-0 2021-01-17 19:15:45 +00:00
parent 9554174f21
commit 422942d6d7
19 changed files with 656 additions and 11 deletions

36
pkgs/zlib/build.sh Normal file
View file

@ -0,0 +1,36 @@
pkgver=1.2.11
pkgname=zlib
bad=""
ext="dev"
fetch() {
curl https://zlib.net/zlib-1.2.11.tar.xz -o $pkgname-$pkgver.tar.gz
tar -xf $pkgname-$pkgver.tar.gz
}
build() {
cd $pkgname-$pkgver
./configure \
--prefix=/usr
make
}
package() {
cd $pkgname-$pkgver
make install DESTDIR=$pkgdir
rm $pkgdir/usr/lib/*.a
rm -r $pkgdir/usr/include
rm -r $pkgdir/usr/lib/pkgconfig
rm -r $pkgdir/usr/share
}
package_doc() {
cd $pkgname-$pkgver
make install DESTDIR=$pkgdir
rm -r $pkgdir/usr/bin
}
license() {
cd $pkgname-$pkgver
cat LICENSE
}