wok view pcmciautils/receipt @ rev 20443

Add python-smspdu
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Sep 13 18:04:04 2018 +0200 (2018-09-13)
parents 77be6b57303b
children eeba7ab1dffe
line source
1 # SliTaz package receipt.
3 PACKAGE="pcmciautils"
4 VERSION="018"
5 CATEGORY="system-tools"
6 SHORT_DESC="Utilities for inserting and removing PCMCIA cards"
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="https://www.kernel.org/pub/linux/utils/kernel/pcmcia/pcmcia.html"
11 #WGET_URL="https://www.kernel.org/pub/linux/utils/kernel/pcmcia/$TARBALL"
12 WGET_URL="http://sourceware.mirrors.tds.net/pub/kernel.org/linux/utils/kernel/pcmcia/$TARBALL"
14 DEPENDS="linux sysfsutils udev"
15 BUILD_DEPENDS="sysfsutils-dev bison flex"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 # We need lex...
21 make
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/sbin $fs/etc/udev/rules.d $fs/etc/pcmcia
28 cp -a $src/pccardctl $fs/sbin
29 cp -a $src/pcmcia-check-broken-cis $fs/sbin
30 cp -a $src/pcmcia-socket-startup $fs/sbin
31 # Udev rules and config.
32 cp -a $src/udev/60-pcmcia.rules $fs/etc/udev/rules.d
33 cp -a $src/config/config.opts $fs/etc/pcmcia
34 # Fix path
35 sed -i s#/lib/udev/pcmcia-check-broken-cis#/sbin/pcmcia-check-broken-cis# \
36 $fs/etc/udev/rules.d/60-pcmcia.rules
37 sed -i s#/lib/udev/pcmcia-socket-startup#/sbin/pcmcia-socket-startup# \
38 $fs/etc/udev/rules.d/60-pcmcia.rules
39 }
41 post_install()
42 {
43 echo
44 tazpkg reconfigure udev --root="$1"
45 echo
46 }