Automated: initialized with version 138-3

This commit is contained in:
Ivan Shapovalov 2014-02-28 12:52:57 +04:00
commit 80c249539c
2 changed files with 44 additions and 0 deletions

15
.SRCINFO Normal file
View file

@ -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

29
PKGBUILD Normal file
View file

@ -0,0 +1,29 @@
# Maintainer: Ivan Shapovalov <intelfx100@gmail.com>
# Contributor: Andrea Scarpino <andrea@archlinux.org>
# Contributor: Antony Male <antony dot male at gmail dot com>
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
}