summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorbionade242020-02-15 16:58:47 +0100
committerbionade242020-02-15 16:58:47 +0100
commit75b223f12559096fb1f2c158383e42b5e1713429 (patch)
tree49ef0b95e210c4e91f54e4fdc57162032276e106
parent689ca70660b25f4cbe6091d94b748dbf798c5321 (diff)
downloadaur-75b223f12559096fb1f2c158383e42b5e1713429.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 666e8612a9b0..e70e7ff4e249 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,9 +1,13 @@
pkgbase = ros-melodic-ros-tutorials
pkgdesc = ROS - ros_tutorials contains packages that demonstrate various features of ROS, as well as support packages which help demonstrate those features.
pkgver = 0.9.1
- pkgrel = 1
+ pkgrel = 2
url = https://www.wiki.ros.org/ros_tutorials
- 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 5a678f73c671..751360c35e0d 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -6,8 +6,8 @@ url='https://www.wiki.ros.org/ros_tutorials'
pkgname='ros-melodic-ros-tutorials'
pkgver='0.9.1'
_pkgver_patch=0
-arch=('any')
-pkgrel=1
+arch=('i686' 'x86_64' 'aarch64' 'armv7h' 'armv6h')
+pkgrel=2
license=('BSD')
ros_makedepends=(
@@ -52,9 +52,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
}