diff options
author | Omar Vega Ramos <ovruni@gnu.org.pe> | 2016-07-09 20:54:04 -0500 |
---|---|---|
committer | Omar Vega Ramos <ovruni@gnu.org.pe> | 2016-07-09 20:54:04 -0500 |
commit | c33010e34fa64581cc17f01453a18b3e53f2b994 (patch) | |
tree | aae9e19401938c5a589192f1b590fa8668d38206 /pcr/trytond-webdav | |
parent | 757bc896faf678646de00be1f0b48d3023a12be7 (diff) | |
download | abslibre-c33010e34fa64581cc17f01453a18b3e53f2b994.tar.gz abslibre-c33010e34fa64581cc17f01453a18b3e53f2b994.tar.bz2 abslibre-c33010e34fa64581cc17f01453a18b3e53f2b994.zip |
trytond-webdav: add new packages to [pcr]
Diffstat (limited to 'pcr/trytond-webdav')
-rw-r--r-- | pcr/trytond-webdav/PKGBUILD | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/pcr/trytond-webdav/PKGBUILD b/pcr/trytond-webdav/PKGBUILD new file mode 100644 index 000000000..9b24100b5 --- /dev/null +++ b/pcr/trytond-webdav/PKGBUILD @@ -0,0 +1,26 @@ +# Maintainer: Omar Vega Ramos <ovruni@gnu.org.pe> + +pkgname=trytond-webdav +_pkgname=trytond_webdav +pkgver=4.0.2 +_pkgdir=4.0 +pkgrel=1 +pkgdesc="The webdav module of the Tryton application platform" +arch=('any') +url='http://www.tryton.org/' +license=('GPL3') +groups=('trytond-modules') +depends=('trytond>=4.0' 'python2-pywebdav>=0.9.8') +makedepends=('python2-distribute') +source=("http://downloads.tryton.org/$_pkgdir/$_pkgname-$pkgver.tar.gz") +md5sums=("76e52ee83f604d40c8b5864504067e57") + +build() { + cd $srcdir/$_pkgname-$pkgver + python2 setup.py build +} + +package() { + cd $srcdir/$_pkgname-$pkgver + python2 setup.py install --root=$pkgdir +} |