diff options
author | bionade24 | 2020-02-15 16:55:15 +0100 |
---|---|---|
committer | bionade24 | 2020-02-15 16:55:15 +0100 |
commit | b460075e1d2f439d20e2e5001d6537a19af6aa9a (patch) | |
tree | acead029377674829bb1c0b0e2b5d8786cc91da6 | |
parent | 955955e4530735dd3fa7242fb0ceace9e551c0b9 (diff) | |
download | aur-b460075e1d2f439d20e2e5001d6537a19af6aa9a.tar.gz |
Fixed arch=() array
-rw-r--r-- | .SRCINFO | 8 | ||||
-rw-r--r-- | PKGBUILD | 7 |
2 files changed, 8 insertions, 7 deletions
@@ -1,9 +1,13 @@ pkgbase = ros-melodic-pluginlib pkgdesc = ROS - The pluginlib package provides tools for writing and dynamically loading plugins using the ROS build infrastructure. pkgver = 1.12.1 - pkgrel = 1 + pkgrel = 2 url = http://www.ros.org/wiki/pluginlib - arch = any + arch = i686 + arch = x86_64 + arch = aarch64 + arch = armv7h + arch = armv6h license = BSD makedepends = cmake makedepends = ros-build-tools @@ -5,8 +5,8 @@ url='http://www.ros.org/wiki/pluginlib' pkgname='ros-melodic-pluginlib' pkgver='1.12.1' -arch=('any') -pkgrel=1 +arch=('i686' 'x86_64' 'aarch64' 'armv7h' 'armv6h') +pkgrel=2 license=('BSD') ros_makedepends=( @@ -59,9 +59,6 @@ build() { -DCATKIN_BUILD_BINARY_PACKAGE=ON \ -DCMAKE_INSTALL_PREFIX=/opt/ros/melodic \ -DPYTHON_EXECUTABLE=/usr/bin/python3 \ - -DPYTHON_INCLUDE_DIR=/usr/include/python3.7m \ - -DPYTHON_LIBRARY=/usr/lib/libpython3.7m.so \ - -DPYTHON_BASENAME=.cpython-37m \ -DSETUPTOOLS_DEB_LAYOUT=OFF make } |