wok-6.x annotate udev/receipt @ rev 1878
Up udev (135)
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Wed Dec 17 07:05:23 2008 +0000 (2008-12-17) |
parents | d6295d7937b2 |
children | d0baa10a73d6 |
rev | line source |
---|---|
pankso@5 | 1 # SliTaz package receipt. |
pankso@5 | 2 |
pankso@5 | 3 PACKAGE="udev" |
pascal@1878 | 4 VERSION="135" |
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 |
pascal@1878 | 35 for i in libudev.so libvolume_id.so; do |
pascal@1878 | 36 [ -f $fs/lib/$i ] || ( cd $fs/lib ; ln -s $i.*.* $i) |
pascal@1878 | 37 done |
pankso@789 | 38 |
pankso@1270 | 39 # Default config files in /lib/udev/rules.d and custom on in |
pankso@1270 | 40 # /etc/udev/rules.d. |
pankso@5 | 41 cp stuff/udev.conf $fs/etc/udev |
pankso@5 | 42 cp stuff/90-permissions.rules $fs/etc/udev/rules.d |
pankso@1261 | 43 cp -a $src/rules/packages/40-alsa.rules $fs/etc/udev/rules.d |
pankso@5 | 44 } |