2008-10-25 02:14:03 +02:00
|
|
|
# Template file for 'e2fsprogs'
|
|
|
|
pkgname=e2fsprogs
|
|
|
|
version=1.41.3
|
2008-12-15 07:27:38 +01:00
|
|
|
distfiles="$SOURCEFORGE_SITE/e2fsprogs/$pkgname-$version.tar.gz"
|
2008-10-25 02:14:03 +02:00
|
|
|
build_style=gnu_configure
|
2008-10-31 02:08:36 +01:00
|
|
|
configure_args="--enable-htree --enable-elf-shlibs --enable-fsck
|
|
|
|
--enable-e2initrd-helper --disable-rpath --bindir=/bin --sbindir=/sbin
|
|
|
|
--libdir=/usr/lib --includedir=/usr/include"
|
|
|
|
make_install_target="install-libs install"
|
2008-10-25 02:14:03 +02:00
|
|
|
make_install_args="
|
2008-10-31 02:08:36 +01:00
|
|
|
root_bindir=$XBPS_DESTDIR/$pkgname-$version/bin
|
|
|
|
bindir=$XBPS_DESTDIR/$pkgname-$version/bin
|
|
|
|
root_sbindir=$XBPS_DESTDIR/$pkgname-$version/sbin
|
|
|
|
sbindir=$XBPS_DESTDIR/$pkgname-$version/sbin
|
|
|
|
root_libdir=$XBPS_DESTDIR/$pkgname-$version/usr/lib
|
|
|
|
libdir=$XBPS_DESTDIR/$pkgname-$version/usr/lib
|
|
|
|
root_includedir=$XBPS_DESTDIR/$pkgname-$version/usr/include
|
|
|
|
includedir=$XBPS_DESTDIR/$pkgname-$version/usr/include"
|
2008-10-25 02:14:03 +02:00
|
|
|
short_desc="Ext2/3/4 Filesystem Utilities"
|
|
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
|
|
|
checksum=ce77edae680d090cb8275eca9be282bdbc5fbef028d7bf6f772fb4f04b578d7a
|
|
|
|
long_desc="
|
|
|
|
It provides the filesystem utilities for use with the ext2 filesystem.
|
|
|
|
It also supports the ext3 filesystem with journaling support."
|
|
|
|
|
|
|
|
run_depends="glibc-2.8"
|
2008-10-31 02:08:36 +01:00
|
|
|
|
|
|
|
post_install()
|
|
|
|
{
|
|
|
|
local destdir=$XBPS_DESTDIR/$pkgname-$version
|
|
|
|
|
|
|
|
# Move libraries to /lib.
|
2008-12-14 05:48:49 +01:00
|
|
|
install -d ${destdir}/lib
|
2008-10-31 02:08:36 +01:00
|
|
|
mv ${destdir}/usr/lib/lib* ${destdir}/lib
|
|
|
|
}
|