mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
19 lines
731 B
Bash
19 lines
731 B
Bash
# Contributor: Geoffroy Carrier <geoffroy.carrier@koon.fr>
|
|
# Previous Contributor: William Rea <sillywilly@gmail.com>
|
|
# Previous Contributor: aeolist <aeolist@hotmail.com>
|
|
pkgname=synbak
|
|
pkgver=1.2.1
|
|
pkgrel=1
|
|
pkgdesc="Meant to unify several backup methods in a single application while supplying a powerful reporting system"
|
|
arch=('i686' 'x86_64')
|
|
url="http://www.initzero.it/products/opensource/synbak"
|
|
depends=('bc' 'netcat')
|
|
license=("GPL")
|
|
source=(http://www.initzero.it/products/opensource/$pkgname/download/$pkgname-$pkgver.tar.gz)
|
|
md5sums=('170422b1240c0c028aa45766502cf0f8')
|
|
build() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
./configure --prefix=/usr || return 1
|
|
make || return 1
|
|
make DESTDIR="$pkgdir" install || return 1
|
|
}
|