summaryrefslogtreecommitdiff
path: root/pcr/python2-wstool
diff options
context:
space:
mode:
authorAurélien DESBRIÈRES <aurelien@hackers.camp>2014-06-05 18:41:01 +0200
committerAurélien DESBRIÈRES <aurelien@hackers.camp>2014-06-05 18:41:01 +0200
commitef98535d636cd37c1c8d21468def819989b76a14 (patch)
tree8c8492651795ce32259f86596050bfabdfa8edd7 /pcr/python2-wstool
parent959757ededada0e12a1dcc328520625b60ff6e60 (diff)
python2-wstool rosinstall
Diffstat (limited to 'pcr/python2-wstool')
-rw-r--r--pcr/python2-wstool/PKGBUILD33
1 files changed, 33 insertions, 0 deletions
diff --git a/pcr/python2-wstool/PKGBUILD b/pcr/python2-wstool/PKGBUILD
new file mode 100644
index 000000000..731f4ad61
--- /dev/null
+++ b/pcr/python2-wstool/PKGBUILD
@@ -0,0 +1,33 @@
+# Contributor (Arch) : Georg Bremer <pkgbuild@dschoordsch.de>
+# Maintainer (Parabola) : Aurélien DESBRIÈRES <aurelien@hackers.camp>
+
+pkgname='python2-wstool'
+pkgver=0.1.1
+pkgrel=1
+pkgdesc="wstool provides commands to manage several local SCM repositories (supports git, mercurial, subversion, bazaar) based on a single workspace definition file (.rosinstall)."
+arch=('any')
+url="http://ros.org/"
+license=('BSD')
+groups=()
+depends=('python2' 'python2-yaml' 'python2-vcstools')
+makedepends=('python2-setuptools')
+optdepends=()
+provides=('wstool')
+conflicts=('wstool')
+replaces=()
+backup=()
+options=()
+install=
+source=("http://download.ros.org/downloads/wstool/wstool-$pkgver.tar.gz")
+
+noextract=()
+
+build() {
+ echo ""
+}
+
+package() {
+ cd "$srcdir/wstool-$pkgver"
+ python2 setup.py install --root "$pkgdir"
+}
+# vim:set ts=2 sw=2 et: