CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
kbd: fixed issue with loadkeys command location
[crossrootfs.git] / e2fsprogs / Pkgfile
CommitLineData
6dca1d21
JB
1# Description: Ext2 Filesystem Utilities
2# URL: http://e2fsprogs.sourceforge.net/
3# Maintainer: CRUX System Team, core-ports at crux dot nu
afea1fd0
JB
4# Arch maintainer: CRUX ARM System Team, crux-arm at mikeux dot dyndns dot org
5# Depends on: util-linux-ng
6dca1d21
JB
6
7name=e2fsprogs
afea1fd0 8version=1.41.9
b8a4333c 9release=2
6dca1d21
JB
10source=(http://dl.sourceforge.net/sourceforge/$name/$name-$version.tar.gz \
11 $name-symlink.patch)
12
13build() {
14 cd $name-$version
15 patch -p1 -i $SRC/$name-symlink.patch
16
17 ./configure --build=$CHOST \
18 --host=$CTARGET \
19 --prefix=/usr \
20 --with-root-prefix= \
21 --mandir=/usr/man \
22 --enable-elf-shlibs \
23 --disable-debugfs \
24 --disable-imager \
25 --disable-e2initrd-helper \
26 --disable-evms \
b8a4333c
JB
27 --disable-nls \
28 --disable-libblkid \
29 --disable-libuuid \
30 --disable-uuidd
6dca1d21
JB
31
32 make
33 make DESTDIR=$PKG install install-libs
34 rm -r $PKG/usr/share/info
35 chmod +w -R $PKG
36}