mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-12 02:04:37 +08:00
27 lines
698 B
Bash
27 lines
698 B
Bash
pkgname=iwd
|
|
pkgver=0.8
|
|
pkgrel=1
|
|
pkgdesc='Internet Wireless Daemon'
|
|
arch=('x86_64')
|
|
url='https://git.kernel.org/cgit/network/wireless/iwd.git/'
|
|
license=('LGPL')
|
|
depends=('glibc')
|
|
source=("https://www.kernel.org/pub/linux/network/wireless/iwd-$pkgver.tar"{.xz,.sign})
|
|
sha512sums=('a7707f4c2730eeab0bf65d36c796d5f32b5ccfdb10a199dd2a7263d7297dfd336b8de434c90efb32b6151dfd41911511cd97d1c2ae42012653ee0b44ab709490'
|
|
'SKIP')
|
|
validpgpkeys=('E932D120BC2AEC444E558F0106CA9F5D1DCF2659')
|
|
|
|
build() {
|
|
cd $pkgname-$pkgver
|
|
./configure --prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--libexecdir=/usr/lib/iwd \
|
|
--localstatedir=/var
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd $pkgname-$pkgver
|
|
make install DESTDIR=$pkgdir
|
|
}
|