2008-10-26 01:43:11 +02:00
|
|
|
# Template file for 'udev'
|
|
|
|
pkgname=udev
|
2009-03-08 04:13:42 +01:00
|
|
|
version=139
|
2008-10-26 01:43:11 +02:00
|
|
|
distfiles="
|
2009-02-17 13:59:18 +01:00
|
|
|
http://www.kernel.org/pub/linux/utils/kernel/hotplug/udev-${version}.tar.bz2"
|
2008-10-26 01:43:11 +02:00
|
|
|
build_style=gnu_configure
|
2008-12-17 06:36:37 +01:00
|
|
|
configure_args="--exec-prefix= --without-selinux --mandir=/usr/share/man"
|
|
|
|
make_install_target="DESTDIR=$XBPS_DESTDIR/$pkgname-$version install"
|
2008-10-26 01:43:11 +02:00
|
|
|
short_desc="A userspace implementation of devfs"
|
|
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
2009-03-08 04:13:42 +01:00
|
|
|
checksum=6786a896146b12323d0ef31601dc23b6e5501762d7d61c475d09e405494c21df
|
2008-10-26 01:43:11 +02:00
|
|
|
long_desc="
|
|
|
|
udev is a implementation of devfs in userspace using sysfs and
|
|
|
|
/sbin/hotplug. It requires a 2.5/2.6 kernel to run properly."
|
|
|
|
|
2009-02-25 06:15:20 +01:00
|
|
|
Add_dependency full glibc
|
|
|
|
Add_dependency full procps
|
2009-02-19 16:10:13 +01:00
|
|
|
|
|
|
|
post_install()
|
|
|
|
{
|
|
|
|
local destdir=$XBPS_DESTDIR/$pkgname-$version
|
|
|
|
|
2009-03-05 03:20:57 +01:00
|
|
|
install -d $destdir/lib/firmware
|
|
|
|
install -d $destdir/lib/udev/devices/pts
|
|
|
|
install -d $destdir/lib/udev/devices/shm
|
|
|
|
mknod -m0666 $destdir/lib/udev/devices/null c 1 3
|
|
|
|
mknod -m0600 $destdir/lib/udev/devices/kmsg c 1 11
|
|
|
|
ln -s /proc/self/fd $destdir/lib/udev/devices/fd
|
|
|
|
ln -s /proc/self/fd/0 $destdir/lib/udev/devices/stdin
|
|
|
|
ln -s /proc/self/fd/1 $destdir/lib/udev/devices/stdout
|
|
|
|
ln -s /proc/self/fd/2 $destdir/lib/udev/devices/stderr
|
|
|
|
ln -s /proc/kcore $destdir/lib/udev/devices/core
|
2009-02-19 16:10:13 +01:00
|
|
|
}
|