CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
Fixed major update for Arch-Maintainer's email (all ports)
[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
b751b192 4# Arch Maintainer: CRUX-ARM System Team, devel at crux-arm dot nu
afea1fd0 5# Depends on: util-linux-ng
6dca1d21
JB
6
7name=e2fsprogs
b8eefc5a
JB
8version=1.41.10
9release=1
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 \
6dca1d21
JB
23 --disable-e2initrd-helper \
24 --disable-evms \
b8a4333c 25 --disable-nls \
5c4c3c7e 26 --disable-fsck \
b8a4333c
JB
27 --disable-libblkid \
28 --disable-libuuid \
29 --disable-uuidd
6dca1d21
JB
30
31 make
32 make DESTDIR=$PKG install install-libs
33 rm -r $PKG/usr/share/info
34 chmod +w -R $PKG
35}