mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
26 lines
876 B
Bash
26 lines
876 B
Bash
# $Id: PKGBUILD 35790 2009-04-17 06:43:46Z eric $
|
|
# Maintainer: Tobias Powalowski <tpowa@archlinux.org>
|
|
|
|
pkgname=progsreiserfs
|
|
pkgver=0.3.0.5
|
|
pkgrel=4
|
|
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
|
|
}
|