CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
binutils: update to 2.22. Removed host's texinfo dependency.
[crossrootfs.git] / e2fsprogs / Pkgfile
1 # Description: Ext2 Filesystem Utilities
2 # URL: http://e2fsprogs.sourceforge.net/
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: util-linux-ng
6
7 name=e2fsprogs
8 version=1.41.14
9 release=1
10 source=(http://dl.sourceforge.net/sourceforge/$name/$name-$version.tar.gz)
11
12 build() {
13 cd $name-$version
14
15 ./configure --build=$CHOST \
16 --host=$CTARGET \
17 --prefix=/usr \
18 --with-root-prefix= \
19 --mandir=/usr/man \
20 --enable-symlink-install \
21 --enable-elf-shlibs \
22 --disable-e2initrd-helper \
23 --disable-evms \
24 --disable-nls \
25 --disable-fsck \
26 --disable-libblkid \
27 --disable-libuuid \
28 --disable-uuidd
29
30 make
31 make DESTDIR=$PKG install install-libs
32 rm -r $PKG/usr/share/info
33 chmod +w -R $PKG
34 }