commit eb7c31417ee252e4673f732e072837c74c96339d Author: Jaroslav Lichtblau Date: Fri Nov 28 20:17:14 2014 +0100 Initial PKGBUILD status as of 28.11.2014 diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 000000000000..fb2b71e2ae97 --- /dev/null +++ b/.SRCINFO @@ -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 + diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 000000000000..f8ce51853b27 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,26 @@ +# Maintainer: Jaroslav Lichtblau +# Contributor: damir +# Contributor: Damir Perisa + +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 +} +