Added templates, file and less

This commit is contained in:
Ella-0 2021-01-27 11:19:03 +00:00
parent 422942d6d7
commit 7ef735574d
4 changed files with 138 additions and 0 deletions

35
pkgs/less/build.sh Normal file
View file

@ -0,0 +1,35 @@
pkgname=less
pkgver=563
ext="doc"
fetch() {
curl "http://www.greenwoodsoftware.com/less/less-563.tar.gz" -o $pkgname-$pkgver.tar.xz
tar -xf $pkgname-$pkgver.tar.xz
}
build() {
cd $pkgname-$pkgver
./configure \
--prefix=/usr \
--build=x86_64-unknown-linux-musl \
--host=x86_64-unknown-linux-musl
make
}
package() {
cd $pkgname-$pkgver
make install DESTDIR=$pkgdir
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
}