CRUX-ARM : Home

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