PKGBUILDs/extra/fsarchiver/PKGBUILD
2009-10-09 21:23:22 -05:00

22 lines
656 B
Bash

# $Id: PKGBUILD 53375 2009-09-30 18:24:19Z andrea $
# Maintainer: Andrea Scarpino <andrea@archlinux.org>
# Contributor: Tobias Powalowski <tpowa@archlinux.org>
pkgname=fsarchiver
pkgver=0.6.0
pkgrel=1
pkgdesc="A safe and flexible file-system backup and deployment tool"
arch=('i686' 'x86_64')
url="http://www.fsarchiver.org/"
license=('GPL')
depends=('bzip2' 'e2fsprogs' 'lzo2' 'openssl' 'xz-utils' 'libgcrypt')
source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz)
md5sums=('f41bce4a1df2c287ca25e3cb8d56b27d')
build() {
cd $srcdir/$pkgname-$pkgver
./configure --prefix=/usr
make || return 1
make DESTDIR="$pkgdir" install
}