29 lines
903 B
Text
29 lines
903 B
Text
# Template file for 'odroid-u2-base'
|
|
pkgname=odroid-u2-base
|
|
version=2.0
|
|
revision=2
|
|
build_style=meta
|
|
homepage="http://www.voidlinux.eu"
|
|
short_desc="Void Linux Odroid U2 platform package"
|
|
maintainer="Enno Boland <eb@s01.de>"
|
|
license="Public Domain"
|
|
|
|
only_for_archs="armv7l"
|
|
depends="virtual?ntp-daemon odroid-u2-kernel odroid-u2-uboot odroid-u2-boot-fw"
|
|
|
|
conf_files=/etc/default/odroid-led
|
|
build_options="systemd"
|
|
|
|
do_install() {
|
|
# Set proper perms to some devices.
|
|
vmkdir usr/lib/udev/rules.d
|
|
echo 'KERNEL=="disp|cedar_dev|mali|ump", MODE="0660", GROUP="video"' > ${DESTDIR}/usr/lib/udev/rules.d/50-odroid-u2.rules
|
|
|
|
# Install LED utilities
|
|
vinstall ${FILESDIR}/odroid-led.sh 744 /usr/sbin odroid-led
|
|
vinstall ${FILESDIR}/odroid-led.default 744 /etc/default odroid-led
|
|
if [ "$build_option_systemd" ]; then
|
|
vinstall ${FILESDIR}/odroid-led.service 644 /usr/lib/systemd/system
|
|
fi
|
|
vsv odroid-led
|
|
}
|