mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
27 lines
652 B
Bash
27 lines
652 B
Bash
# Maintainer: UtG <utg.chakra.linux[AT]gmail[dot]com>
|
|
|
|
pkgname=fsarchiver
|
|
pkgver=0.6.19
|
|
pkgrel=2
|
|
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')
|
|
categories=('utils')
|
|
screenshot=('http://media.cdn.ubuntu-de.org/wiki/attachments/02/04/verzeichnis.jpg')
|
|
source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz)
|
|
md5sums=('cd0807dbd5f575ed9c2fc066ed107841')
|
|
|
|
build() {
|
|
cd $pkgname-$pkgver
|
|
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd $pkgname-$pkgver
|
|
make DESTDIR=$pkgdir install
|
|
}
|