CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
rsync: updated source
[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
6
7 name=e2fsprogs
8 version=1.44.1
9 release=1
10 source=(https://www.kernel.org/pub/linux/kernel/people/tytso/$name/v$version/$name-$version.tar.xz)
11
12 build() {
13 cd $name-$version
14
15 ./configure --build=$CHOST \
16 --host=$CTARGET \
17 --prefix=/usr \
18 --with-root-prefix= \
19 --enable-symlink-install \
20 --enable-elf-shlibs \
21 --disable-e2initrd-helper \
22 --disable-nls \
23 --disable-fsck \
24 --disable-libblkid \
25 --disable-libuuid \
26 --disable-uuidd \
27 --disable-fuse2fs
28
29 make -j1
30 make -j1 DESTDIR=$PKG install install-libs
31
32 rm -r $PKG/usr/share/info
33
34 chmod +w -R $PKG
35 }