CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
wget: updated to 1.15
[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
af6d6162 5# Depends on: util-linux
6dca1d21
JB
6
7name=e2fsprogs
6e6c9b74
VM
8version=1.42.10
9release=2
10source=(http://downloads.sourceforge.net/project/$name/$name/v$version/$name-$version.tar.gz
11 $name-$version-config.patch)
6dca1d21
JB
12
13build() {
14 cd $name-$version
6e6c9b74 15 patch -p1 -i $SRC/$name-$version-config.patch
6dca1d21
JB
16 ./configure --build=$CHOST \
17 --host=$CTARGET \
18 --prefix=/usr \
19 --with-root-prefix= \
20 --mandir=/usr/man \
de1cbf20 21 --enable-symlink-install \
6dca1d21 22 --enable-elf-shlibs \
6dca1d21 23 --disable-e2initrd-helper \
b8a4333c 24 --disable-nls \
5c4c3c7e 25 --disable-fsck \
b8a4333c
JB
26 --disable-libblkid \
27 --disable-libuuid \
28 --disable-uuidd
6dca1d21 29
6e6c9b74 30 make -j1
af6d6162
VM
31 make -j1 DESTDIR=$PKG install install-libs
32
33 # quota support is disabled by default
6e6c9b74
VM
34 #rm -r $PKG/usr/include/quota
35 #rm $PKG/usr/lib/{libquota.a,pkgconfig/quota.pc}
af6d6162 36
6dca1d21 37 rm -r $PKG/usr/share/info
af6d6162 38
6dca1d21
JB
39 chmod +w -R $PKG
40}