2006-02-23 15:26:10 +00:00
|
|
|
# Description: Ext2 Filesystem Utilities
|
|
|
|
# URL: http://e2fsprogs.sourceforge.net/
|
2007-01-23 17:25:18 +00:00
|
|
|
# Maintainer: CRUX System Team, core-ports at crux dot nu
|
2012-12-08 18:40:57 +01:00
|
|
|
# Depends on: util-linux
|
2006-02-23 15:26:10 +00:00
|
|
|
|
|
|
|
name=e2fsprogs
|
2017-02-14 16:52:55 +01:00
|
|
|
version=1.43.4
|
2016-05-30 13:38:47 +02:00
|
|
|
release=1
|
|
|
|
source=(https://www.kernel.org/pub/linux/kernel/people/tytso/$name/v$version/$name-$version.tar.xz)
|
2006-02-23 15:26:10 +00:00
|
|
|
|
|
|
|
build() {
|
|
|
|
cd $name-$version
|
2009-06-30 13:03:05 +02:00
|
|
|
|
2008-07-15 19:44:29 +02:00
|
|
|
./configure --prefix=/usr \
|
|
|
|
--with-root-prefix= \
|
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 \
|
2009-05-15 13:20:00 +02:00
|
|
|
--disable-nls \
|
|
|
|
--disable-fsck \
|
2009-06-30 13:03:05 +02:00
|
|
|
--disable-libblkid \
|
|
|
|
--disable-libuuid \
|
2016-05-30 13:38:47 +02:00
|
|
|
--disable-uuidd \
|
|
|
|
--disable-fuse2fs
|
2009-06-30 13:03:05 +02:00
|
|
|
|
2014-05-22 20:43:32 +02:00
|
|
|
make -j1
|
2008-10-14 09:09:52 +02:00
|
|
|
make -j1 DESTDIR=$PKG install install-libs
|
2009-06-30 13:03:05 +02:00
|
|
|
|
2008-02-10 14:50:58 +01:00
|
|
|
rm -r $PKG/usr/share/info
|
2009-06-30 13:03:05 +02:00
|
|
|
|
2006-02-23 15:26:10 +00:00
|
|
|
chmod +w -R $PKG
|
|
|
|
}
|