mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
23 lines
847 B
Bash
23 lines
847 B
Bash
# $Id: PKGBUILD 38713 2009-05-10 07:32:43Z tpowa $
|
|
# Maintainer: Judd Vinet <jvinet@zeroflux.org>
|
|
# Contributer: Jason Chu <jchu@xentac.net>
|
|
pkgname=wireless_tools
|
|
pkgver=29
|
|
pkgrel=4
|
|
pkgdesc="Wireless Tools"
|
|
arch=(arm)
|
|
url="http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/Tools.html"
|
|
groups=('base')
|
|
license=('GPL')
|
|
depends=('glibc')
|
|
backup=('etc/conf.d/wireless')
|
|
source=(http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/wireless_tools.29.tar.gz wireless.conf.d)
|
|
md5sums=('e06c222e186f7cc013fd272d023710cb'
|
|
'027576534885b8d5dded9be546057b12')
|
|
|
|
build() {
|
|
cd $srcdir/wireless_tools.29
|
|
make || return 1
|
|
make INSTALL_DIR=$pkgdir/usr/sbin INSTALL_LIB=$pkgdir/usr/lib INSTALL_INC=$pkgdir/usr/include INSTALL_MAN=$pkgdir/usr/share/man install || return 1
|
|
install -D -m644 ../wireless.conf.d $startdir/pkg/etc/conf.d/wireless
|
|
}
|