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