summaryrefslogtreecommitdiff
path: root/pcr/rosinstall
diff options
context:
space:
mode:
authorAndré Fabian Silva Delgado <emulatorman@lavabit.com>2012-11-21 00:12:28 -0200
committerAndré Fabian Silva Delgado <emulatorman@lavabit.com>2012-11-21 00:12:28 -0200
commitb354a1f61393c7ec251ed2127a30a4e59facf95e (patch)
treec250b9aeaac1adb3d73c439582461bd5bafe4eb1 /pcr/rosinstall
parent14c7fb9a0df7f551b634e88cae88ca67cf3ab879 (diff)
parent5d8975d8907023d095a33cb34684804309cd9487 (diff)
Merge branch 'master' of ssh://parabolagnulinux.org:1863/srv/git/abslibre
Diffstat (limited to 'pcr/rosinstall')
-rw-r--r--pcr/rosinstall/PKGBUILD21
1 files changed, 21 insertions, 0 deletions
diff --git a/pcr/rosinstall/PKGBUILD b/pcr/rosinstall/PKGBUILD
new file mode 100644
index 000000000..3f91dbe6c
--- /dev/null
+++ b/pcr/rosinstall/PKGBUILD
@@ -0,0 +1,21 @@
+# Contributor: Georg Bremer <pkgbuild@dschoordsch.de>
+# Maintainer : Parabola GNU / Linux-libre Aurelien Desbrieres <aurelien@cwb.io>
+
+pkgdesc='Tool to download/boostrap the ROS stack'
+url='http://www.ros.org/'
+
+pkgname='rosinstall'
+pkgver='0.6.20'
+pkgrel='1'
+arch=('i686' 'x86_64')
+license=('BSD')
+depends=('python2' 'cmake' 'wget' 'vcstools'
+ 'git' 'python2-distribute' 'python2-yaml')
+
+source=("http://pr.willowgarage.com/downloads/$pkgname/$pkgname-$pkgver.tar.gz")
+
+build() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+ sed -i 's/env python /env python2 /' src/rosinstall/setupfiles.py
+ python2 setup.py install --root=$pkgdir --optimize=1
+}