blob: 9d1abbb1d92847d22ef6c487010599fade2f3650 (
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=017
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 }
|