CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
6a59fda60c8d32e1534f896554fc94bdafae892c
[crossrootfs.git] / util-linux-ng / Pkgfile
1 # Description: Miscellaneous system utilities
2 # URL: http://userweb.kernel.org/~kzak/util-linux-ng/
3 # Maintainer: CRUX System Team, core-ports at crux dot nu
4 # Arch Maintainer: CRUX-ARM System Team, devel at crux-arm dot nu
5 # Depends on: ncurses zlib
6
7 name=util-linux-ng
8 version=2.19
9 release=1
10 source=(http://ftp.kernel.org/pub/linux/utils/util-linux/v2.19/util-linux-$version.tar.bz2)
11
12 build() {
13 cd util-linux-$version
14 ./configure --build=$CHOST \
15 --host=$CTARGET \
16 --prefix=/usr \
17 --mandir=/usr/man \
18 --disable-{nls,elvtune,wall,fallocate} \
19 --enable-{write,rdev,raw,kill}
20
21 make
22 make DESTDIR=$PKG install
23
24 install -d $PKG/{etc,var/{lib/libuuid,run/uuidd}}
25 touch $PKG/etc/adjtime
26
27 rm -r $PKG/usr/{share,man/ru}
28 rm $PKG/sbin/{mkfs.bfs,mkfs.minix,fsck.minix}
29 rm $PKG/usr/man/man8/{fsck.minix,mkfs.bfs,mkfs.minix}.8
30 }