blob: 3c95a98e7009fe60447eeb0d15c0f17966a36b08 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# $Id: PKGBUILD 142302 2011-11-08 06:06:08Z tomegun $
# Maintainer: Giovanni Scafora <giovanni@archlinux.org>
# Contributer: Jason Chu <jchu@xentac.net>
pkgname=wireless_tools
pkgver=29
pkgrel=5
pkgdesc="Wireless Tools"
arch=('i686' 'x86_64')
url="http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/Tools.html"
license=('GPL')
depends=('glibc')
source=("http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/wireless_tools.${pkgver}.tar.gz")
md5sums=('e06c222e186f7cc013fd272d023710cb')
build() {
cd ${srcdir}/wireless_tools.${pkgver}
make
}
package() {
cd ${srcdir}/wireless_tools.${pkgver}
make INSTALL_DIR="${pkgdir}/usr/sbin" \
INSTALL_LIB="${pkgdir}/usr/lib" \
INSTALL_INC="${pkgdir}/usr/include" \
INSTALL_MAN="${pkgdir}/usr/share/man" install
}
|