blob: d2254124f1b84bb3f983b234987bbd5f4f21117b (
plain)
1 # Description: An initialization tools necessary to allow the PCMCIA subsystem to behave (almost) as every other hotpluggable bus system
2 # URL: http://www.kernel.org/pub/linux/utils/kernel/pcmcia/pcmcia.html
3 # Maintainer: Mikhail Kolesnik, mike at openbunker dot org
4 # Depends on: sysfsutils
5
6 name=pcmciautils
7 version=016
8 release=1
9 source=(http://www.kernel.org/pub/linux/utils/kernel/pcmcia/$name-$version.tar.bz2 \
10 $name-makefile.patch)
11
12 build() {
13 cd $name-$version
14 patch -p1 -i $SRC/$name-makefile.patch
15 make
16 make DESTDIR=$PKG install
17 mv $PKG/etc/udev/rules.d/60-pcmcia.rules $PKG/etc/udev/rules.d/65-pcmcia.rules
18 }
|