diff options
author | root <root@rshg054.dnsready.net> | 2012-11-21 01:32:11 -0800 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2012-11-21 01:32:11 -0800 |
commit | f48f6c82e23a3bacb8a0952c2d2cf9af1e6bf42d (patch) | |
tree | d578e4bdc10acc78968e3e5cdfce8dcd0289a60d /pcr/python2-rospkg | |
parent | 0a05643b928d724c048e4306955642d91f24d33c (diff) |
Wed Nov 21 01:32:09 PST 2012
Diffstat (limited to 'pcr/python2-rospkg')
-rw-r--r-- | pcr/python2-rospkg/PKGBUILD | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/pcr/python2-rospkg/PKGBUILD b/pcr/python2-rospkg/PKGBUILD new file mode 100644 index 000000000..cf6116ba0 --- /dev/null +++ b/pcr/python2-rospkg/PKGBUILD @@ -0,0 +1,23 @@ +# Contributor: Somebody <somebody[at]foo[dot]tld> +# Maintainer : Parabola GNU / Linux-libre Aurelien Desbrieres <aurelien@cwb.io> +_name=rospkg +pkgname=python2-rospkg +pkgver=1.0.15 +pkgrel=1 +pkgdesc="provides basic utilities for querying information about ROS packages, stacks, and distributions." +url="http://ros.org/doc/api/rospkg/html/python_api.html" +arch=('x86_64' 'i686') +license=('BSD') +depends=('python2') +optdepends=() +makedepends=('python2-distribute') +conflicts=() +replaces=() +backup=() +source=(http://pr.willowgarage.com/downloads/${_name}/${_name}-${pkgver}.tar.gz) + +build() { + cd ${srcdir}/${_name}-${pkgver} + find -type f -print0 | xargs -0 sed -i -e 's/#!\/usr\/bin\/env python/#!\/usr\/bin\/env python2/g' + python2 setup.py install --root="${pkgdir}" --optimize=1 || return 1 +} |