void-packages/srcpkgs/udev/template

70 lines
2.4 KiB
Plaintext

# Template file for 'udev'
pkgname=udev
version=171
revision=1
distfiles="${KERNEL_SITE}/utils/kernel/hotplug/udev-${version}.tar.bz2"
build_style=gnu_configure
configure_args="--exec-prefix= --without-selinux --libexecdir=/lib/udev
--with-rootlibdir=/lib --enable-introspection --enable-edd --enable-floppy
--enable-action_modeswitch"
short_desc="/dev/ and hotplug management daemon"
maintainer="Juan RP <xtraeme@gmail.com>"
homepage="http://www.kernel.org/pub/linux/utils/kernel/hotplug/udev.html"
license="GPL-2"
checksum=fed1e46074c1a16c828193ebd73b3940b7905cc7dcaeb0b3c720d4615210695e
long_desc="
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"
subpackages="libudev libudev-devel libgudev libgudev-devel"
Add_dependency run glibc
Add_dependency run glib
Add_dependency run acl
Add_dependency run libusb-compat
Add_dependency full usbutils ">=0.82"
Add_dependency full pciutils
Add_dependency build pkg-config
Add_dependency build libtool
Add_dependency build gperf
Add_dependency build glib-devel
Add_dependency build acl-devel
Add_dependency build glib-devel
Add_dependency build libusb-compat-devel
Add_dependency build gobject-introspection
post_install()
{
# Install some additional rules.
install -m644 ${wrksrc}/rules/misc/* ${DESTDIR}/lib/udev/rules.d
# Install the OpenRC service
install -D -m755 ${FILESDIR}/udev.rc ${DESTDIR}/etc/init.d/udev
# Install the initramfs-tools hook/scripts.
install -d $DESTDIR/usr/share/initramfs-tools/hooks
install -d $DESTDIR/usr/share/initramfs-tools/scripts/init-top
install -d $DESTDIR/usr/share/initramfs-tools/scripts/init-bottom
install -m 755 ${FILESDIR}/udev.initramfs-hook \
$DESTDIR/usr/share/initramfs-tools/hooks/udev
install -m 755 ${FILESDIR}/udev.initramfs-inittop \
$DESTDIR/usr/share/initramfs-tools/scripts/init-top/udev
install -m 755 ${FILESDIR}/udev.initramfs-bottom \
$DESTDIR/usr/share/initramfs-tools/scripts/init-bottom/udev
# Move gobject introspection stuff to correct path
mv $DESTDIR//lib/girepository* $DESTDIR/usr/lib
# Move pkgconfig files to correct path
install -d $DESTDIR/usr/lib/pkgconfig
mv $DESTDIR/lib/pkgconfig/* $DESTDIR/usr/lib/pkgconfig
mv $DESTDIR/usr/share/pkgconfig/* $DESTDIR/usr/lib/pkgconfig
rmdir $DESTDIR/usr/share/pkgconfig
rmdir $DESTDIR/lib/pkgconfig
}