desktop/fsarchiver/PKGBUILD

25 lines
624 B
Bash
Raw Normal View History

pkgname=fsarchiver
2017-01-15 21:46:27 +08:00
pkgver=0.8.1
2016-03-01 08:33:09 +08:00
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)
2017-01-15 21:46:27 +08:00
md5sums=('0120521e77709749f8147e0a1e583221')
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
}