wok view pcmciautils/receipt @ rev 1631

kbd-busybox: can't build on virtual systems !
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Oct 23 20:31:20 2008 +0000 (2008-10-23)
parents 7855098a6b94
children 5cd5eb008923
line source
1 # SliTaz package receipt.
3 PACKAGE="pcmciautils"
4 VERSION="015"
5 CATEGORY="system-tools"
6 SHORT_DESC="Utils to use with PCMCIA cards"
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="linux sysfsutils udev"
9 BUILD_DEPENDS="sysfsutils-dev bison"
10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
11 WEB_SITE="http://www.kernel.org/pub/linux/utils/kernel/pcmcia/pcmcia.html"
12 WGET_URL="http://www.kernel.org/pub/linux/utils/kernel/pcmcia/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 # We need lex...
18 cd $src
19 make
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 mkdir -p $fs/sbin $fs/etc/udev/rules.d $fs/etc/pcmcia
26 cp -a $src/pccardctl $fs/sbin
27 cp -a $src/pcmcia-check-broken-cis $fs/sbin
28 cp -a $src/pcmcia-socket-startup $fs/sbin
29 strip -s $fs/sbin/*
30 # Udev rules and config.
31 cp -a $src/udev/60-pcmcia.rules $fs/etc/udev/rules.d
32 cp -a $src/config/config.opts $fs/etc/pcmcia
33 }