wok-6.x annotate udev/receipt @ rev 1925
Try to explain mysterious SELF_INSTALL variable
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Tue Dec 23 10:34:11 2008 +0000 (2008-12-23) |
parents | 691d6ea4280b |
children | 8535947fa8a6 |
rev | line source |
---|---|
pankso@5 | 1 # SliTaz package receipt. |
pankso@5 | 2 |
pankso@5 | 3 PACKAGE="udev" |
pascal@1878 | 4 VERSION="135" |
pascal@1890 | 5 BUILD_WARNING="Install new udev package and rebuild hal" |
pankso@210 | 6 CATEGORY="base-system" |
pankso@5 | 7 SHORT_DESC="Udev creat automaticly right devices in /dev." |
pankso@5 | 8 MAINTAINER="pankso@slitaz.org" |
pankso@5 | 9 TARBALL="$PACKAGE-$VERSION.tar.gz" |
pankso@5 | 10 WEB_SITE="http://www.kernel.org/pub/linux/utils/kernel/hotplug/udev.html" |
pankso@5 | 11 WGET_URL="http://www.us.kernel.org/pub/linux/utils/kernel/hotplug/$TARBALL" |
pankso@5 | 12 |
pankso@5 | 13 # Rules to configure and make the package. |
pankso@5 | 14 compile_rules() |
pankso@5 | 15 { |
pankso@5 | 16 cd $src |
pankso@1261 | 17 ./configure \ |
pankso@1261 | 18 --prefix=/usr \ |
pankso@1270 | 19 --exec-prefix="" \ |
pankso@1261 | 20 --sysconfdir=/etc \ |
pascal@1535 | 21 --enable-static \ |
pascal@1535 | 22 $CONFIGURE_ARGS && |
pankso@789 | 23 make EXTRAS="extras/firmware extras/scsi_id extras/volume_id \ |
pascal@1535 | 24 extras/ata_id extras/usb_id extras/cdrom_id" && |
pankso@1270 | 25 make DESTDIR=$PWD/_pkg install |
pankso@5 | 26 } |
pankso@5 | 27 |
pankso@5 | 28 # Rules to gen a SliTaz package suitable for Tazpkg. |
pankso@5 | 29 genpkg_rules() |
pankso@5 | 30 { |
pankso@1261 | 31 mkdir -p $fs/lib/firmware $fs/etc/udev/rules.d |
pankso@789 | 32 |
pankso@1261 | 33 cp -a $_pkg/sbin $fs |
pankso@1261 | 34 cp -a $_pkg/etc $fs |
pankso@1261 | 35 cp -a $_pkg/lib $fs |
pascal@1878 | 36 for i in libudev.so libvolume_id.so; do |
pascal@1878 | 37 [ -f $fs/lib/$i ] || ( cd $fs/lib ; ln -s $i.*.* $i) |
pascal@1878 | 38 done |
pankso@789 | 39 |
pankso@1270 | 40 # Default config files in /lib/udev/rules.d and custom on in |
pankso@1270 | 41 # /etc/udev/rules.d. |
pankso@5 | 42 cp stuff/udev.conf $fs/etc/udev |
pankso@5 | 43 cp stuff/90-permissions.rules $fs/etc/udev/rules.d |
pankso@1261 | 44 cp -a $src/rules/packages/40-alsa.rules $fs/etc/udev/rules.d |
pankso@5 | 45 } |