desktop/fsarchiver/PKGBUILD
2017-01-15 13:46:27 +00:00

25 lines
624 B
Bash

pkgname=fsarchiver
pkgver=0.8.1
pkgrel=1
pkgdesc="A safe and flexible file-system backup and deployment tool"
arch=('x86_64')
url="http://www.fsarchiver.org/"
license=('GPL2')
depends=('bzip2' 'e2fsprogs' 'lzo2' 'xz' 'libgcrypt' 'zlib')
categories=('utils')
screenshot=('http://media.cdn.ubuntu-de.org/wiki/attachments/02/04/verzeichnis.jpg')
source=(https://github.com/fdupoux/fsarchiver/releases/download/$pkgver/$pkgname-$pkgver.tar.gz)
md5sums=('0120521e77709749f8147e0a1e583221')
build() {
cd $pkgname-$pkgver
./configure --prefix=/usr
make
}
package() {
cd $pkgname-$pkgver
make DESTDIR=$pkgdir install
}