# $Id: PKGBUILD 78033 2010-04-19 08:27:04Z dgriffiths $ # Maintainer: Tobias Powalowski pkgname=progsreiserfs pkgver=0.3.0.5 pkgrel=5 pkgdesc="library for accessing and manipulating reiserfs partitions" arch=(i686 x86_64) url="http://www.namesys.com" license=('GPL') depends=('e2fsprogs') options=('!libtool') source=(#ftp://ftp.namesys.com/pub/libreiserfs/${pkgname}-${pkgver}.tar.gz ftp://ftp.archlinux.org/other/progsreiserfs/${pkgname}-${pkgver}.tar.gz ) md5sums=('d822579bbd4a29a1be5e4490869d9bee') build() { cd ${srcdir}/${pkgname}-${pkgver} ./configure --prefix=/usr --mandir=/usr/share/man || return 1 make || return 1 make DESTDIR=${pkgdir} install || return 1 rm ${pkgdir}/usr/share/man/man8/mkfs.reiserfs.8 rm ${pkgdir}/usr/share/man/man8/resizefs.reiserfs.8 rm ${pkgdir}/usr/share/man/man8/tunefs.reiserfs.8 }