diff options
Diffstat (limited to 'pcr/trytond-party')
-rw-r--r-- | pcr/trytond-party/PKGBUILD | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/pcr/trytond-party/PKGBUILD b/pcr/trytond-party/PKGBUILD new file mode 100644 index 000000000..91ffd4e54 --- /dev/null +++ b/pcr/trytond-party/PKGBUILD @@ -0,0 +1,26 @@ +# Maintainer: Robin Baumgartner <robin@baumgartners.ch> +# Maintainer (Parabola): André Silva <emulatorman@parabola.nu> +pkgname=trytond-party +_pkgname=trytond_party +pkgver=3.0.0 +_pkgdir=3.0 +pkgrel=3 +pkgdesc="The party module of the Tryton application platform" +arch=('any') +url='http://www.tryton.org/' +license=('GPL3') +groups=('trytond-modules') +depends=('trytond>=3.0' 'trytond-country>=3.0') +makedepends=('python2-distribute') +source=("http://downloads.tryton.org/$_pkgdir/$_pkgname-$pkgver.tar.gz") +md5sums=("43c6d17fbe723beec0339da27f3e188e") + +build() { + cd $srcdir/$_pkgname-$pkgver + python2 setup.py build +} + +package() { + cd $srcdir/$_pkgname-$pkgver + python2 setup.py install --root=$pkgdir +} |