summaryrefslogtreecommitdiffstats
path: root/testing/udev/APKBUILD
blob: d25b5faa49289ae8fca06a6ab74b35aaa9ded2eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=udev
pkgver=142
pkgrel=0
pkgdesc="The userspace dev tools (udev)"
url="http://www.kernel.org/pub/linux/utils/kernel/hotplug/udev.html"
license="GPL"
subpackages="$pkgname-dev $pkgname-doc"
depends="uclibc"
makedepends=""
install=
source="http://www.kernel.org/pub/linux/utils/kernel/hotplug/$pkgname-$pkgver.tar.bz2
	write_root_link_rule
	move_tmp_persistent_rules.sh
	udev-mount.initd
	udev-postmount.initd
	udev.initd"

build () 
{ 
	cd "$srcdir"/$pkgname-$pkgver
	./configure --prefix=/usr \
		--sysconfdir=/etc \
		--exec-prefix="" \
		--with-libdir-name=/lib
	make || return 1
	make DESTDIR="$pkgdir" install
	chmod +x "$pkgdir"/lib/udev/write_*_rules
	for _i in write_root_link_rule move_tmp_persistent_rules.sh; do
		install -Dm755 ../$_i "$pkgdir"/lib/udev/$_i
	done
	for _i in udev udev-mount udev-postmount; do
		install -Dm755 ../$_i.initd "$pkgdir"/etc/init.d/$_i
	done
}
md5sums="3edc4cf383dccb06d866c5156d59ddd5  udev-142.tar.bz2
c9de7581099cdfdcd105666cd98a0f0a  write_root_link_rule
7bf11e11519117f743483c73e0767750  move_tmp_persistent_rules.sh
12760065a66ccbddc9e3a86a6cd2231c  udev-mount.initd
bffb42859ca508cfe1d9fa0a169ba810  udev-postmount.initd
e913f8f122e8879252d2a05de7dd7499  udev.initd"