mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-25 02:52:13 +08:00
30 lines
752 B
Bash
30 lines
752 B
Bash
#
|
|
# Apps Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# Contributor: abveritas[at]chakra-project[dot]org>
|
|
|
|
pkgname=fsarchiver
|
|
pkgver=0.6.17
|
|
pkgrel=1
|
|
pkgdesc="A safe and flexible file-system backup and deployment tool"
|
|
arch=('x86_64')
|
|
url="http://www.fsarchiver.org/"
|
|
license=('GPL')
|
|
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=('74cd8cb541630da0542a0f5fd7cce247')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|