mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-11 00:04:37 +08:00
25 lines
892 B
Bash
25 lines
892 B
Bash
# $Id: PKGBUILD 68133 2010-02-10 20:56:38Z giovanni $
|
|
# Maintainer: Giovanni Scafora <giovanni@archlinux.org>
|
|
# Contributer: Jason Chu <jchu@xentac.net>
|
|
|
|
pkgname=wireless_tools
|
|
pkgver=29
|
|
pkgrel=3
|
|
pkgdesc="Wireless Tools"
|
|
arch=('i686' 'x86_64')
|
|
url="http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/Tools.html"
|
|
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 ${srcdir}/wireless.conf.d "${pkgdir}/etc/conf.d/wireless" || return 1
|
|
}
|