2008-10-25 02:14:03 +02:00
|
|
|
# Template file for 'e2fsprogs'
|
|
|
|
pkgname=e2fsprogs
|
2012-04-01 04:57:26 +02:00
|
|
|
version=1.42.2
|
2011-12-02 10:50:55 +01:00
|
|
|
homepage="http://e2fsprogs.sourceforge.net/"
|
2008-12-15 07:27:38 +01:00
|
|
|
distfiles="$SOURCEFORGE_SITE/e2fsprogs/$pkgname-$version.tar.gz"
|
2011-10-24 14:14:47 +02:00
|
|
|
build_style=gnu-configure
|
2011-06-25 22:02:17 +02:00
|
|
|
configure_args="--enable-htree --enable-elf-shlibs --disable-fsck
|
2011-06-17 09:33:02 +02:00
|
|
|
--enable-e2initrd-helper --disable-rpath --with-root-prefix=
|
2012-01-30 17:52:11 +01:00
|
|
|
--disable-uuidd --disable-libuuid --disable-libblkid
|
|
|
|
--enable-symlink-build --enable-symlink-install
|
|
|
|
--libdir=/usr/lib --libexecdir=/usr/lib"
|
2011-06-17 09:33:02 +02:00
|
|
|
make_install_args="install-libs"
|
2008-10-25 02:14:03 +02:00
|
|
|
short_desc="Ext2/3/4 Filesystem Utilities"
|
|
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
2011-12-02 10:50:55 +01:00
|
|
|
license="GPL-2, LGPL-2.1"
|
2012-04-01 04:57:26 +02:00
|
|
|
checksum=1d36fec5e34ac285f59dff3851d6f4ca9f0b964ddd7e8fe00f1f920b091cb8be
|
2008-10-25 02:14:03 +02:00
|
|
|
long_desc="
|
|
|
|
It provides the filesystem utilities for use with the ext2 filesystem.
|
2012-03-02 07:42:48 +01:00
|
|
|
It also supports the ext3/4 filesystem with journaling support."
|
2008-10-25 02:14:03 +02:00
|
|
|
|
2009-11-22 08:31:44 +01:00
|
|
|
subpackages="$pkgname-devel $pkgname-libs"
|
2009-03-18 10:02:08 +01:00
|
|
|
conf_files="/etc/mke2fs.conf"
|
2012-03-02 07:42:48 +01:00
|
|
|
|
|
|
|
Add_dependency build pkg-config
|
2010-01-07 22:03:52 +01:00
|
|
|
Add_dependency build libuuid-devel
|
|
|
|
Add_dependency build libblkid-devel
|
2009-05-13 07:02:48 +02:00
|
|
|
|
2012-01-30 17:52:11 +01:00
|
|
|
post_install() {
|
2009-05-13 07:02:48 +02:00
|
|
|
# Remove stuff belonging to libblkid or libuuid pkgs.
|
2009-08-12 12:23:24 +02:00
|
|
|
find ${DESTDIR} -name \*blkid\* -o -name \*findfs\* \
|
|
|
|
-name \*uuidd\* -o -name \*uuidgen\* | \
|
2009-05-13 07:02:48 +02:00
|
|
|
xargs rm -rf
|
|
|
|
rm -f ${DESTDIR}/lib/libuuid*
|
|
|
|
rm -f ${DESTDIR}/usr/share/man/man3/uuid*
|
|
|
|
rm -f ${DESTDIR}/usr/lib/libuuid*
|
|
|
|
rm -rf ${DESTDIR}/usr/include/uuid
|
|
|
|
rm -f ${DESTDIR}/usr/lib/pkgconfig/uuid*
|
|
|
|
}
|