wok-stable annotate udev/receipt @ rev 1535
udev: fix compile_rules
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Thu Oct 09 19:36:57 2008 +0000 (2008-10-09) |
parents | 4eb4da12babc |
children | 691d6ea4280b |
rev | line source |
---|---|
pankso@5 | 1 # SliTaz package receipt. |
pankso@5 | 2 |
pankso@5 | 3 PACKAGE="udev" |
erjo@1381 | 4 VERSION="128" |
pankso@210 | 5 CATEGORY="base-system" |
pankso@5 | 6 SHORT_DESC="Udev creat automaticly right devices in /dev." |
pankso@5 | 7 MAINTAINER="pankso@slitaz.org" |
pankso@5 | 8 TARBALL="$PACKAGE-$VERSION.tar.gz" |
pankso@5 | 9 WEB_SITE="http://www.kernel.org/pub/linux/utils/kernel/hotplug/udev.html" |
pankso@5 | 10 WGET_URL="http://www.us.kernel.org/pub/linux/utils/kernel/hotplug/$TARBALL" |
pankso@5 | 11 |
pankso@5 | 12 # Rules to configure and make the package. |
pankso@5 | 13 compile_rules() |
pankso@5 | 14 { |
pankso@5 | 15 cd $src |
pankso@1261 | 16 ./configure \ |
pankso@1261 | 17 --prefix=/usr \ |
pankso@1270 | 18 --exec-prefix="" \ |
pankso@1261 | 19 --sysconfdir=/etc \ |
pascal@1535 | 20 --enable-static \ |
pascal@1535 | 21 $CONFIGURE_ARGS && |
pankso@789 | 22 make EXTRAS="extras/firmware extras/scsi_id extras/volume_id \ |
pascal@1535 | 23 extras/ata_id extras/usb_id extras/cdrom_id" && |
pankso@1270 | 24 make DESTDIR=$PWD/_pkg install |
pankso@5 | 25 } |
pankso@5 | 26 |
pankso@5 | 27 # Rules to gen a SliTaz package suitable for Tazpkg. |
pankso@5 | 28 genpkg_rules() |
pankso@5 | 29 { |
pankso@1261 | 30 mkdir -p $fs/lib/firmware $fs/etc/udev/rules.d |
pankso@789 | 31 |
pankso@1261 | 32 cp -a $_pkg/sbin $fs |
pankso@1261 | 33 cp -a $_pkg/etc $fs |
pankso@1261 | 34 cp -a $_pkg/lib $fs |
pankso@789 | 35 |
pankso@1270 | 36 # Default config files in /lib/udev/rules.d and custom on in |
pankso@1270 | 37 # /etc/udev/rules.d. |
pankso@5 | 38 cp stuff/udev.conf $fs/etc/udev |
pankso@5 | 39 cp stuff/90-permissions.rules $fs/etc/udev/rules.d |
pankso@1261 | 40 cp -a $src/rules/packages/40-alsa.rules $fs/etc/udev/rules.d |
pankso@5 | 41 } |