summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorbionade242020-02-15 16:52:41 +0100
committerbionade242020-02-15 16:52:41 +0100
commita21ba4e3ac739daf513387b76103fccb4a2cfdd9 (patch)
treea7bd3887b1995c77b2dc6787f9d5b916ebbaaabe
parente22510385e8385222632f9918a14fe0e1b46c0bb (diff)
downloadaur-a21ba4e3ac739daf513387b76103fccb4a2cfdd9.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 6bf746277ad9..20097c778901 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,9 +1,13 @@
pkgbase = ros-melodic-message-filters
pkgdesc = ROS - A set of message filters which take in messages and may output those messages at a later time, based on the conditions that filter needs met.
pkgver = 1.14.3
- pkgrel = 1
+ pkgrel = 2
url = https://wiki.ros.org/message_filters
- 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 9e8d191ef50b..446e45ffadcb 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -5,8 +5,8 @@ url='https://wiki.ros.org/message_filters'
pkgname='ros-melodic-message-filters'
pkgver='1.14.3'
-arch=('any')
-pkgrel=1
+arch=('i686' 'x86_64' 'aarch64' 'armv7h' 'armv6h')
+pkgrel=2
license=('BSD')
ros_makedepends=(
@@ -61,9 +61,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
}