desktop/fsarchiver/PKGBUILD

25 lines
625 B
Bash
Raw Normal View History

pkgname=fsarchiver
2016-03-01 08:33:09 +08:00
pkgver=0.6.22
pkgrel=1
pkgdesc="A safe and flexible file-system backup and deployment tool"
arch=('x86_64')
url="http://www.fsarchiver.org/"
2014-04-02 07:16:18 +08:00
license=('GPL2')
2016-03-01 08:33:09 +08:00
depends=('bzip2' 'e2fsprogs' 'lzo2' 'xz' 'libgcrypt' 'zlib')
categories=('utils')
screenshot=('http://media.cdn.ubuntu-de.org/wiki/attachments/02/04/verzeichnis.jpg')
2016-03-01 08:33:09 +08:00
source=(https://github.com/fdupoux/fsarchiver/releases/download/$pkgver/$pkgname-$pkgver.tar.gz)
md5sums=('112ddbfbebad08f3df1da3d480bf5fa8')
build() {
2015-03-27 02:52:26 +08:00
cd $pkgname-$pkgver
./configure --prefix=/usr
make
}
package() {
2015-03-27 02:52:26 +08:00
cd $pkgname-$pkgver
make DESTDIR=$pkgdir install
2013-12-09 05:36:49 +08:00
}