Files
void-packages/templates/udev/template
Juan RP 26a8c1b1fa Added klibc-udev-138 template, for the initramfs.
Move initramfs-tools udev hook to this pkg.

--HG--
extra : convert_revision : d88915bc50cdf9211fae16f09a3b306814c6ed1f
2009-03-08 02:09:37 +01:00

34 lines
1.2 KiB
Plaintext

# Template file for 'udev'
pkgname=udev
version=138
distfiles="
http://www.kernel.org/pub/linux/utils/kernel/hotplug/udev-${version}.tar.bz2"
build_style=gnu_configure
configure_args="--exec-prefix= --without-selinux --mandir=/usr/share/man"
make_install_target="DESTDIR=$XBPS_DESTDIR/$pkgname-$version install"
short_desc="A userspace implementation of devfs"
maintainer="Juan RP <xtraeme@gmail.com>"
checksum=bc525a4d6bdbace1b23433256643cc331e4049e1e2442333707e6d2ba8a173b4
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."
Add_dependency full glibc
Add_dependency full procps
post_install()
{
local destdir=$XBPS_DESTDIR/$pkgname-$version
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
}