mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-04-12 17:16:44 +02:00
These variables are initialized from the environment so -DCMAKE_C_FLAGS="$CFLAGS" and similar shouldn't have any effect.
37 lines
978 B
Text
37 lines
978 B
Text
# Contributor: Russ Webber <russ@rw.id.au>
|
|
# Maintainer: Russ Webber <russ@rw.id.au>
|
|
pkgname=console_bridge
|
|
pkgver=1.0.2
|
|
pkgrel=0
|
|
pkgdesc="Logging that seamlessly pipes into rosconsole/rosout for ROS-dependent packages."
|
|
url="https://github.com/ros/console_bridge"
|
|
arch="all"
|
|
license="BSD-3-Clause"
|
|
makedepends="cmake"
|
|
subpackages="$pkgname-dev"
|
|
source="console_bridge-$pkgver.tar.gz::https://github.com/ros/console_bridge/archive/$pkgver.tar.gz"
|
|
|
|
build() {
|
|
if [ "$CBUILD" != "$CHOST" ]; then
|
|
CMAKE_CROSSOPTS="-DCMAKE_SYSTEM_NAME=Linux -DCMAKE_HOST_SYSTEM_NAME=Linux"
|
|
fi
|
|
cmake \
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
-DCMAKE_INSTALL_LIBDIR=lib \
|
|
-DBUILD_SHARED_LIBS=True \
|
|
-DCMAKE_BUILD_TYPE=None \
|
|
$CMAKE_CROSSOPTS .
|
|
make
|
|
}
|
|
|
|
check() {
|
|
make test
|
|
}
|
|
|
|
package() {
|
|
make DESTDIR="$pkgdir" install
|
|
}
|
|
|
|
sha512sums="
|
|
ed427da8e59f9629f8d70e0a14415f88177c06fbaf7334bee56135dde91d19a1b54f5c9c668e0fd68314ab8dfd61446a174b9f528304decc5d4626a7c98882cb console_bridge-1.0.2.tar.gz
|
|
"
|