iglunix/pkgs/wpa_supplicant/build.sh

29 lines
421 B
Bash
Raw Normal View History

2021-04-09 19:48:35 +00:00
pkgname=wpa_supplicant
pkgver=2.9
fetch() {
curl "https://w1.fi/releases/wpa_supplicant-2.9.tar.gz" -o $pkgname-$pkgver.tar.xz
tar -xf $pkgname-$pkgver.tar.xz
cp ../config .
}
build() {
cd $pkgname-$pkgver
cd $pkgname
cp ../../config .config
gmake
}
package() {
cd $pkgname-$pkgver
cd $pkgname
gmake install DESTDIR=$pkgdir BINDIR=/usr/sbin
}
license() {
cd $pkgname-$pkgver
cat LICENSE
# cat COPYING
}