mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
25 lines
624 B
Bash
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
|
|
}
|