Initial PKGBUILD status as of 28.11.2014

This commit is contained in:
Jaroslav Lichtblau 2014-11-28 20:17:14 +01:00
commit eb7c31417e
2 changed files with 39 additions and 0 deletions

13
.SRCINFO Normal file
View file

@ -0,0 +1,13 @@
pkgbase = dirsync
pkgdesc = Directory Synchronizer this utility take two argument the source directory and the destination and make recursively the two directories identical
pkgver = 1.11
pkgrel = 1
url = http://www.viara.eu/en/dirsync.htm
arch = i686
arch = x86_64
license = unknown
source = http://www.viara.eu/download/dirsync-1_11.tar.gz
md5sums = 2eb3745f674fb71047ca4e64110ceb68
pkgname = dirsync

26
PKGBUILD Normal file
View file

@ -0,0 +1,26 @@
# Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
# Contributor: damir <damir@archlinux.org>
# Contributor: Damir Perisa <damir.perisa@bluewin.ch>
pkgname=dirsync
pkgver=1.11
origver=1_11
pkgrel=1
pkgdesc="Directory Synchronizer this utility take two argument the source directory and the destination and make recursively the two directories identical"
arch=('i686' 'x86_64')
url="http://www.viara.eu/en/dirsync.htm"
license=('unknown')
source=(http://www.viara.eu/download/$pkgname-$origver.tar.gz)
md5sums=('2eb3745f674fb71047ca4e64110ceb68')
build() {
cd ${srcdir}
install -d ${pkgdir}/usr/bin || return 1
rm $pkgname || return 1
make linux || return 1
sed -i 's|/usr/local|/usr/share|g' makefile || return 1
make DESTDIR=${pkgdir} install || return 1
}