ck: update to 0.7.0.
This commit is contained in:
parent
ff445dfd3a
commit
9df247207f
|
@ -1,16 +1,22 @@
|
||||||
# Template file for 'ck'
|
# Template file for 'ck'
|
||||||
pkgname=ck
|
pkgname=ck
|
||||||
version=0.6.0
|
version=0.7.0
|
||||||
revision=1
|
revision=1
|
||||||
build_style=configure
|
build_style=configure
|
||||||
configure_args="--prefix=/usr"
|
configure_args="--prefix=/usr"
|
||||||
short_desc="Concurrency Kit C library"
|
short_desc="Concurrency Kit C library"
|
||||||
maintainer="Tai Chi Minh Ralph Eastwood <tcmreastwood@gmail.com>"
|
maintainer="Tai Chi Minh Ralph Eastwood <tcmreastwood@gmail.com>"
|
||||||
license="2-clause-BSD"
|
license="BSD-2-Clause"
|
||||||
homepage="http://concurrencykit.org/"
|
homepage="http://concurrencykit.org/"
|
||||||
distfiles="https://github.com/concurrencykit/ck/archive/${version}.tar.gz"
|
distfiles="https://github.com/concurrencykit/ck/archive/${version}.tar.gz"
|
||||||
checksum=d7e27dd0a679e45632951e672f8288228f32310dfed2d5855e9573a9cf0d62df
|
checksum=e730cb448fb0ecf9d19bf4c7efe9efc3c04dd9127311d87d8f91484742b0da24
|
||||||
nocross="configure assumes no crossing, when patched: armv7l-linux-gnueabihf-gcc: error: unrecognized command line option '-m64'"
|
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() {
|
post_install() {
|
||||||
vlicense LICENSE
|
vlicense LICENSE
|
||||||
|
@ -22,7 +28,8 @@ ck-devel_package() {
|
||||||
pkg_install() {
|
pkg_install() {
|
||||||
vmove usr/include
|
vmove usr/include
|
||||||
vmove usr/lib/pkgconfig
|
vmove usr/lib/pkgconfig
|
||||||
vmove usr/lib/*.a
|
vmove "usr/lib/*.a"
|
||||||
vmove usr/lib/*.so
|
vmove "usr/lib/*.so"
|
||||||
|
vmove usr/share/man/man3
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue