mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
26 lines
729 B
Bash
26 lines
729 B
Bash
|
# $Id: PKGBUILD 37989 2009-05-06 06:56:10Z tpowa $
|
||
|
# Maintainer: judd <jvinet@zeroflux.org>
|
||
|
pkgname=xfsdump
|
||
|
pkgver=3.0.1
|
||
|
pkgrel=1
|
||
|
pkgdesc="Additional XFS filesystem utilities"
|
||
|
arch=(i686 x86_64)
|
||
|
license=('LGPL')
|
||
|
url="http://oss.sgi.com/projects/xfs/"
|
||
|
depends=('xfsprogs>=3.0.1' 'attr>=2.4.43' 'acl>=2.2.47' 'dmapi>=2.2.10')
|
||
|
options=('!makeflags')
|
||
|
source=(ftp://oss.sgi.com/projects/xfs/cmd_tars/xfsdump-${pkgver}.tar.gz)
|
||
|
options=(!emptydirs)
|
||
|
|
||
|
build() {
|
||
|
cd $startdir/src/xfsdump-$pkgver
|
||
|
autoconf
|
||
|
./configure --prefix=/usr
|
||
|
make || return 1
|
||
|
make prefix=$startdir/pkg/usr install
|
||
|
# fixes
|
||
|
rm -f $startdir/pkg/usr/lib/*.la
|
||
|
rm -f $startdir/pkg/usr/bin/{xfsdump,xfsrestore}
|
||
|
}
|
||
|
md5sums=('48a65424ccc359f81426b74715c15802')
|