| 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.10 |
| 9 | release=1 |
| 10 | source=(http://dl.sourceforge.net/sourceforge/$name/$name-$version.tar.gz \ |
| 11 | $name-symlink.patch) |
| 12 | |
| 13 | build() { |
| 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-e2initrd-helper \ |
| 24 | --disable-evms \ |
| 25 | --disable-nls \ |
| 26 | --disable-fsck \ |
| 27 | --disable-libblkid \ |
| 28 | --disable-libuuid \ |
| 29 | --disable-uuidd |
| 30 | |
| 31 | make |
| 32 | make DESTDIR=$PKG install install-libs |
| 33 | rm -r $PKG/usr/share/info |
| 34 | chmod +w -R $PKG |
| 35 | } |