core/e2fsprogs/Pkgfile

37 lines
989 B
Plaintext
Raw Normal View History

2006-02-23 16:26:10 +01:00
# Description: Ext2 Filesystem Utilities
# URL: http://e2fsprogs.sourceforge.net/
# Maintainer: CRUX System Team, core-ports at crux dot nu
2009-07-03 18:30:03 +02:00
# Depends on: util-linux-ng
2006-02-23 16:26:10 +01:00
name=e2fsprogs
2012-08-02 12:55:08 +02:00
version=1.42.5
2010-02-14 12:05:30 +01:00
release=1
2012-04-02 15:04:33 +02:00
source=(http://downloads.sourceforge.net/project/$name/$name/v$version/$name-$version.tar.gz)
2006-02-23 16:26:10 +01:00
build() {
cd $name-$version
2008-07-15 19:44:29 +02:00
./configure --prefix=/usr \
--with-root-prefix= \
--mandir=/usr/man \
2010-05-18 19:13:19 +02:00
--enable-symlink-install \
2008-07-15 19:44:29 +02:00
--enable-elf-shlibs \
--disable-e2initrd-helper \
--disable-nls \
--disable-fsck \
--disable-libblkid \
--disable-libuuid \
--disable-uuidd
2006-02-23 16:26:10 +01:00
make
2008-10-14 09:09:52 +02:00
make -j1 DESTDIR=$PKG install install-libs
2011-12-05 16:55:27 +01:00
# quota support is disabled by default
rm -r $PKG/usr/include/quota
rm $PKG/usr/lib/{libquota.a,pkgconfig/quota.pc}
2012-05-17 10:09:46 +02:00
2008-02-10 14:50:58 +01:00
rm -r $PKG/usr/share/info
2006-02-23 16:26:10 +01:00
chmod +w -R $PKG
}