ck: update to 0.7.0.

This commit is contained in:
maxice8 2019-04-04 03:01:24 -03:00 committed by maxice8
parent ff445dfd3a
commit 9df247207f

View file

@ -1,16 +1,22 @@
# Template file for 'ck'
pkgname=ck
version=0.6.0
version=0.7.0
revision=1
build_style=configure
configure_args="--prefix=/usr"
short_desc="Concurrency Kit C library"
maintainer="Tai Chi Minh Ralph Eastwood <tcmreastwood@gmail.com>"
license="2-clause-BSD"
license="BSD-2-Clause"
homepage="http://concurrencykit.org/"
distfiles="https://github.com/concurrencykit/ck/archive/${version}.tar.gz"
checksum=d7e27dd0a679e45632951e672f8288228f32310dfed2d5855e9573a9cf0d62df
nocross="configure assumes no crossing, when patched: armv7l-linux-gnueabihf-gcc: error: unrecognized command line option '-m64'"
checksum=e730cb448fb0ecf9d19bf4c7efe9efc3c04dd9127311d87d8f91484742b0da24
nocross="hand-made shellscript that doesn't take triplet-prefixed compilers into account"
case "$XBPS_TARGET_MACHINE" in
aarch64*) configure_args+=" --enable-lse --disable-sse" ;;
x86_64*|i686*) ;;
*) configure_args+=" --disable-sse" ;;
esac
post_install() {
vlicense LICENSE
@ -22,7 +28,8 @@ ck-devel_package() {
pkg_install() {
vmove usr/include
vmove usr/lib/pkgconfig
vmove usr/lib/*.a
vmove usr/lib/*.so
vmove "usr/lib/*.a"
vmove "usr/lib/*.so"
vmove usr/share/man/man3
}
}