28f31ff7d2
--HG-- extra : convert_revision : 2b574934b32189095af24f6fdafe136ddec310a6
40 lines
1.4 KiB
Text
40 lines
1.4 KiB
Text
# Template file for 'udev'
|
|
pkgname=udev
|
|
version=140
|
|
revision=1
|
|
distfiles="
|
|
http://www.kernel.org/pub/linux/utils/kernel/hotplug/udev-${version}.tar.bz2"
|
|
build_style=gnu_configure
|
|
configure_args="--exec-prefix= --without-selinux"
|
|
short_desc="A userspace implementation of devfs"
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
|
checksum=869e015257457c58209d5aaae0c0f1f41d124c53601bb74e4dbb637442ea5b33
|
|
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()
|
|
{
|
|
# Install some additional rules.
|
|
install -m644 ${FILESDIR}/81-xbps.rules ${DESTDIR}/lib/udev/rules.d
|
|
install -m644 ${wrksrc}/rules/packages/* ${DESTDIR}/lib/udev/rules.d
|
|
# Remove unneeded rules.
|
|
for f in ia64 ppc s390; do
|
|
rm ${DESTDIR}/lib/udev/rules.d/40-${f}.rules
|
|
done
|
|
|
|
# Create some devices that are needed by the initramfs.
|
|
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
|
|
}
|