wok view udev/receipt @ rev 1897

linux/initramfs: early desallocate input buffer for none and gzip compression too
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Dec 20 14:23:46 2008 +0000 (2008-12-20)
parents 691d6ea4280b
children 8535947fa8a6
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 # Default config files in /lib/udev/rules.d and custom on in
41 # /etc/udev/rules.d.
42 cp stuff/udev.conf $fs/etc/udev
43 cp stuff/90-permissions.rules $fs/etc/udev/rules.d
44 cp -a $src/rules/packages/40-alsa.rules $fs/etc/udev/rules.d
45 }