summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorbionade242020-02-15 19:56:30 +0100
committerbionade242020-02-15 19:56:30 +0100
commit6ae0d7e9ce8221860004e4fc0bcc3a82ed0fed8b (patch)
treefba0d5fab374898786039ff14ecbec5e4f08405c
parent7bfdb20ce832b37bf42a3a3c7f63165ac0b5fe90 (diff)
downloadaur-6ae0d7e9ce8221860004e4fc0bcc3a82ed0fed8b.tar.gz
Fixed arch=() array
-rw-r--r--.SRCINFO8
-rw-r--r--PKGBUILD7
2 files changed, 8 insertions, 7 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 7f438d0d0b7a..0f3e56c3e87d 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,9 +1,13 @@
pkgbase = ros-melodic-move-base
pkgdesc = ROS - The move_base package provides an implementation of an action (see the actionlib package) that, given a goal in the world, will attempt to reach it with a mobile base.
pkgver = 1.16.2
- pkgrel = 2
+ pkgrel = 3
url = https://wiki.ros.org/move_base
- arch = any
+ arch = i686
+ arch = x86_64
+ arch = aarch64
+ arch = armv7h
+ arch = armv6h
license = BSD
makedepends = cmake
makedepends = ros-build-tools
diff --git a/PKGBUILD b/PKGBUILD
index a5e1e18167f2..2f582e989bba 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -4,8 +4,8 @@ url='https://wiki.ros.org/move_base'
pkgname='ros-melodic-move-base'
pkgver='1.16.2'
-arch=('any')
-pkgrel=2
+arch=('i686' 'x86_64' 'aarch64' 'armv7h' 'armv6h')
+pkgrel=3
license=('BSD')
ros_makedepends=(ros-melodic-nav-core
@@ -82,9 +82,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=-python3.7m \
-DSETUPTOOLS_DEB_LAYOUT=OFF
make
}