mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-12 07:44:38 +08:00
29 lines
757 B
Bash
29 lines
757 B
Bash
#
|
|
# Chakra Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer abveritas[at]chakra-project[dot]org>
|
|
# contributor Thomas Bächler <thomas@archlinux.org>
|
|
|
|
pkgname=wpa_actiond
|
|
pkgver=1.3
|
|
pkgrel=1
|
|
pkgdesc="Daemon that connects to wpa_supplicant and handles connect and disconnect events"
|
|
arch=('x86_64')
|
|
url="http://projects.archlinux.org/wpa_actiond.git/"
|
|
license=('GPL')
|
|
depends=('glibc' 'wpa_supplicant')
|
|
source=("ftp://ftp.archlinux.org/other/wpa_actiond/$pkgname-$pkgver.tar.xz")
|
|
md5sums=('8b1e738ec57477bdeaf9a11fe46d1094')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
|
|
make CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}"
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
|
|
install -D -m755 wpa_actiond "${pkgdir}/usr/sbin/wpa_actiond"
|
|
}
|