void-packages/srcpkgs/udev/template

56 lines
1.8 KiB
Plaintext
Raw Normal View History

# Template file for 'udev'
pkgname=udev
2011-07-13 14:55:46 +02:00
version=172
distfiles="${KERNEL_SITE}/utils/kernel/hotplug/udev-${version}.tar.bz2"
build_style=gnu_configure
2011-06-26 18:19:21 +02:00
configure_args="--sbindir=/sbin --without-selinux --libexecdir=/lib/udev
--with-rootlibdir=/lib --disable-introspection --enable-edd --enable-floppy
2011-07-13 14:55:46 +02:00
--with-systemdsystemunitdir=/lib/systemd/system --disable-gudev"
2011-05-19 10:07:14 +02:00
short_desc="/dev/ and hotplug management daemon"
maintainer="Juan RP <xtraeme@gmail.com>"
2011-05-27 07:15:43 +02:00
homepage="http://www.kernel.org/pub/linux/utils/kernel/hotplug/udev.html"
license="GPL-2"
2011-07-13 14:55:46 +02:00
checksum=b8959cc951ff69ff13305aad6836eac1ff672d98d5a11435c38c4608f77bbd6a
long_desc="
2011-05-19 10:07:14 +02:00
udev is a daemon which dynamically creates and removes device nodes from
/dev/, handles hotplug events and loads drivers at boot time."
keep_empty_dirs=yes
openrc_services="udev sysinit true"
conf_files="/etc/udev/udev.conf"
2011-06-28 17:11:18 +02:00
subpackages="libudev libudev-devel"
Add_dependency run glibc
Add_dependency run glib
2010-10-26 01:38:24 +02:00
Add_dependency run acl
2011-05-19 09:27:19 +02:00
Add_dependency build pkg-config
Add_dependency build gperf
Add_dependency build glib-devel
Add_dependency build acl-devel
2011-07-13 14:55:46 +02:00
Add_dependency full usbutils ">=0.82"
Add_dependency full pciutils
post_install()
{
# Install some additional rules.
2011-07-13 14:55:46 +02:00
install -m644 rules/misc/* ${DESTDIR}/lib/udev/rules.d
# Install the OpenRC service
2011-07-13 14:55:46 +02:00
vinstall ${FILESDIR}/udev.rc 755 etc/init.d udev
# Install the initramfs-tools hook/scripts.
2011-07-13 14:55:46 +02:00
vinstall ${FILESDIR}/udev.initramfs-hook 755 \
usr/share/initramfs-tools/hooks udev
vinstall ${FILESDIR}/udev.initramfs-inittop 755 \
usr/share/initramfs-tools/scripts/init-top udev
vinstall ${FILESDIR}/udev.initramfs-bottom 755 \
usr/share/initramfs-tools/scripts/init-bottom udev
# Move pkgconfig files to correct path
install -d $DESTDIR/usr/lib/pkgconfig
mv $DESTDIR/usr/share/pkgconfig/* $DESTDIR/usr/lib/pkgconfig
rmdir $DESTDIR/usr/share/pkgconfig
}