Added libnl-tiny
This commit is contained in:
parent
6dabada74d
commit
31cb1d50a6
1 changed files with 23 additions and 0 deletions
23
pkgs/libnl-tiny/build.sh
Normal file
23
pkgs/libnl-tiny/build.sh
Normal file
|
@ -0,0 +1,23 @@
|
|||
pkgname=libnl-tiny
|
||||
pkgver=master
|
||||
|
||||
fetch() {
|
||||
curl -L "https://github.com/sabotage-linux/libnl-tiny/archive/refs/heads/master.tar.gz" -o $pkgname-$pkgver.tar.xz
|
||||
tar -xf $pkgname-$pkgver.tar.xz
|
||||
}
|
||||
|
||||
build() {
|
||||
cd $pkgname-$pkgver
|
||||
ckati prefix=/usr CC=cc
|
||||
}
|
||||
|
||||
package() {
|
||||
cd $pkgname-$pkgver
|
||||
ckati install prefix=/usr DESTDIR=$pkgdir CC=cc
|
||||
}
|
||||
|
||||
license() {
|
||||
cd $pkgname-$pkgver
|
||||
cat LICENSE
|
||||
# cat COPYING
|
||||
}
|
Loading…
Reference in a new issue