wok view udev/receipt @ rev 2025

Up: enlightenment (0.16.999.050) - Snapshot 2008-09-25
author Christophe Lincoln <pankso@slitaz.org>
date Thu Jan 08 22:35:58 2009 +0100 (2009-01-08)
parents d0baa10a73d6
children b35fd0ef7f31
line source
1 # SliTaz package receipt.
3 PACKAGE="udev"
4 VERSION="135"
5 BUILD_WARNING="Install new udev package and rebuild hal"
6 CATEGORY="base-system"
7 SHORT_DESC="Udev creat automaticly right devices in /dev."
8 MAINTAINER="pankso@slitaz.org"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://www.kernel.org/pub/linux/utils/kernel/hotplug/udev.html"
11 WGET_URL="http://www.us.kernel.org/pub/linux/utils/kernel/hotplug/$TARBALL"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 ./configure \
18 --prefix=/usr \
19 --exec-prefix="" \
20 --sysconfdir=/etc \
21 --enable-static \
22 $CONFIGURE_ARGS &&
23 make EXTRAS="extras/firmware extras/scsi_id extras/volume_id \
24 extras/ata_id extras/usb_id extras/cdrom_id" &&
25 make DESTDIR=$PWD/_pkg install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/lib/firmware $fs/etc/udev/rules.d
33 cp -a $_pkg/sbin $fs
34 cp -a $_pkg/etc $fs
35 cp -a $_pkg/lib $fs
36 for i in libudev.so libvolume_id.so; do
37 [ -f $fs/lib/$i ] || ( cd $fs/lib ; ln -s $i.*.* $i)
38 done
40 # Copy rules files to udev conf dir
41 cp -a $src/rules/rules.d/* $fs/etc/udev/rules.d
43 # Default config files in /lib/udev/rules.d and custom on in
44 # /etc/udev/rules.d.
45 cp stuff/udev.conf $fs/etc/udev
46 cp stuff/90-permissions.rules $fs/etc/udev/rules.d
47 cp -a $src/rules/packages/40-alsa.rules $fs/etc/udev/rules.d
48 }