diff options
author | root <root@rshg054.dnsready.net> | 2012-07-16 00:01:23 +0000 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2012-07-16 00:01:23 +0000 |
commit | 50a1eb604b2d5503a06d56b76347faa581160245 (patch) | |
tree | 0d29be50534518ab002e0e6da90300006b3aca58 /testing/wpa_actiond | |
parent | 1ed995034acd07688fe8e78b1d40901bcc662155 (diff) |
Mon Jul 16 00:01:23 UTC 2012
Diffstat (limited to 'testing/wpa_actiond')
-rw-r--r-- | testing/wpa_actiond/PKGBUILD | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/testing/wpa_actiond/PKGBUILD b/testing/wpa_actiond/PKGBUILD new file mode 100644 index 000000000..3e3642442 --- /dev/null +++ b/testing/wpa_actiond/PKGBUILD @@ -0,0 +1,25 @@ +# $Id: PKGBUILD 163526 2012-07-14 13:40:29Z thomas $ +# Maintainer: 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=('i686' '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) +sha256sums=('4523b76980198666ac93f3a3772a10554ef608e6a18ab9eb1346303ee3a6f4b1') + +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" +} +# vim:set ts=2 sw=2 et: |