commit 80c249539ccca1a1a58cfcfb4e4e29e02235bdd4 Author: Ivan Shapovalov Date: Fri Feb 28 12:52:57 2014 +0400 Automated: initialized with version 138-3 diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 000000000000..9413fc7150cf --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,15 @@ +pkgbase = pacbuilder-svn + pkgdesc = A tool to massively recompile archlinux packages from sources + pkgver = 138 + pkgrel = 3 + url = http://code.google.com/p/pacbuilder/ + arch = any + license = GPL3 + makedepends = subversion + depends = rsync + backup = etc/pacbuilder.conf + source = pacbuilder::svn+http://pacbuilder.googlecode.com/svn/trunk + md5sums = SKIP + +pkgname = pacbuilder-svn + diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 000000000000..7ff3a117a11b --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,29 @@ +# Maintainer: Ivan Shapovalov +# Contributor: Andrea Scarpino +# Contributor: Antony Male + +pkgname=pacbuilder-svn +pkgver=138 +pkgrel=3 +pkgdesc="A tool to massively recompile archlinux packages from sources" +arch=('any') +url="http://code.google.com/p/pacbuilder/" +license=('GPL3') +depends=('rsync') +makedepends=('subversion') +backup=('etc/pacbuilder.conf') + +source=("pacbuilder::svn+http://pacbuilder.googlecode.com/svn/trunk") +md5sums=('SKIP') + +pkgver() { + cd pacbuilder + + svnversion +} + +package() { + cd pacbuilder + + make DESTDIR="$pkgdir" install +}