desktop/fsarchiver/PKGBUILD

27 lines
688 B
Bash
Raw Normal View History

2014-04-02 07:16:18 +08:00
# Maintainer: UtG <utg.chakra.linux[AT]gmail[dot]com>
pkgname=fsarchiver
2014-04-02 07:16:18 +08:00
pkgver=0.6.19
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')
depends=('bzip2' 'e2fsprogs' 'lzo2' 'xz' 'libgcrypt')
categories=('utils')
screenshot=('http://media.cdn.ubuntu-de.org/wiki/attachments/02/04/verzeichnis.jpg')
2014-04-02 07:16:18 +08:00
source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz)
md5sums=('cd0807dbd5f575ed9c2fc066ed107841')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
./configure --prefix=/usr
make
}
package() {
cd "${srcdir}/${pkgname}-${pkgver}"
make DESTDIR="${pkgdir}" install
2013-12-09 05:36:49 +08:00
}