mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
28 lines
765 B
Bash
28 lines
765 B
Bash
|
#$Id: PKGBUILD 48175 2009-07-31 21:11:57Z tpowa $
|
||
|
#Maintainer: Tobias Powalowski <tpowa@archlinux.org>
|
||
|
|
||
|
pkgname=ndiswrapper-utils
|
||
|
pkgver=1.55
|
||
|
pkgrel=1
|
||
|
pkgdesc="Binaries for ndiswrapper module"
|
||
|
arch=(i686 x86_64)
|
||
|
license=('GPL')
|
||
|
url="http://ndiswrapper.sourceforge.net"
|
||
|
depends=(wireless_tools glibc)
|
||
|
replaces=('ndiswrapper-bin')
|
||
|
conflicts=('ndiswrapper-bin')
|
||
|
source=(http://downloads.sourceforge.net/ndiswrapper/ndiswrapper-$pkgver.tar.gz
|
||
|
module-init-tools.patch)
|
||
|
md5sums=('aa423a46aff97bd0a830e43d546f2b0e'
|
||
|
'35751aea4aba80520f1310d8639dbfb9')
|
||
|
|
||
|
build()
|
||
|
{
|
||
|
cd $startdir/src/ndiswrapper-$pkgver/utils
|
||
|
# fix module init tools config file
|
||
|
patch -Np1 -i ../../module-init-tools.patch || return 1
|
||
|
make || return 1
|
||
|
make DESTDIR=$startdir/pkg install
|
||
|
}
|
||
|
|