mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
22 lines
656 B
Bash
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
|
||
|
}
|