42 lines
1 KiB
Bash
42 lines
1 KiB
Bash
# Template file for 'thrift'
|
|
pkgname=thrift
|
|
version=0.13.0
|
|
revision=5
|
|
build_style=gnu-configure
|
|
configure_args="--without-python"
|
|
makedepends="boost-devel libressl-devel"
|
|
checkdepends="zlib-devel libevent-devel"
|
|
short_desc="Apache Thrift compiler"
|
|
maintainer="Orphaned <orphan@voidlinux.org>"
|
|
license="Apache-2.0"
|
|
homepage="https://thrift.apache.org/"
|
|
distfiles="http://www-us.apache.org/dist/thrift/${version}/thrift-${version}.tar.gz"
|
|
checksum=7ad348b88033af46ce49148097afe354d513c1fca7c607b59c33ebb6064b5179
|
|
|
|
if [ "$XBPS_TARGET_NO_ATOMIC8" ]; then
|
|
makedepends+=" libatomic-devel"
|
|
fi
|
|
|
|
if [ "$CROSS_BUILD" ]; then
|
|
configure_args+=" --disable-tests --disable-tutorial"
|
|
fi
|
|
|
|
post_configure() {
|
|
case "$XBPS_TARGET_MACHINE" in
|
|
ppc64*) ;;
|
|
ppc*)
|
|
sed -i '/libthrift_la_LIBADD/s/$/ -latomic/' lib/cpp/Makefile
|
|
;;
|
|
esac
|
|
}
|
|
|
|
thrift-devel_package() {
|
|
short_desc+=" - development files"
|
|
depends="${sourcepkg}>=${version}_${revision}"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove "usr/lib/*.a"
|
|
vmove "usr/lib/*.so"
|
|
vmove usr/lib/pkgconfig
|
|
}
|
|
}
|