added man-pages-posix

This commit is contained in:
Ella-0 2021-06-01 09:26:44 +01:00
parent 958b7f0640
commit 4c60a8cf82
1 changed files with 22 additions and 0 deletions

View File

@ -0,0 +1,22 @@
pkgname=man-pages-posix
pkgver=2017
fetch() {
curl "https://mirrors.edge.kernel.org/pub/linux/docs/man-pages/man-pages-posix/man-pages-posix-2017-a.tar.xz" -o $pkgname-$pkgver.tar.xz
tar -xf $pkgname-$pkgver.tar.xz
}
build() {
cd $pkgname-$pkgver
make
}
package() {
cd $pkgname-$pkgver
make install DESTDIR=$pkgdir
}
license() {
cd $pkgname-$pkgver
cat POSIX-COPYRIGHT
}