blob: c3aa79e3aaba2e3c8f4c451d35b1f95a406ed90d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
# Description: Ext2 Filesystem Utilities
# URL: http://e2fsprogs.sourceforge.net/
# Maintainer: CRUX System Team, core-ports at crux dot nu
# Depends on: util-linux-ng
name=e2fsprogs
version=1.41.12
release=1
source=(http://downloads.sourceforge.net/project/$name/$name/$version/$name-$version.tar.gz)
build() {
cd $name-$version
./configure --prefix=/usr \
--with-root-prefix= \
--mandir=/usr/man \
--enable-symlink-install \
--enable-elf-shlibs \
--disable-e2initrd-helper \
--disable-nls \
--disable-fsck \
--disable-libblkid \
--disable-libuuid \
--disable-uuidd
make
make -j1 DESTDIR=$PKG install install-libs
rm -r $PKG/usr/share/info
chmod +w -R $PKG
}
|