mirror of
https://github.com/void-linux/void-packages.git
synced 2025-06-05 06:33:50 +02:00
qbe: update to 1.2.
This commit is contained in:
parent
ca86dc69f2
commit
e5858c3582
1 changed files with 11 additions and 5 deletions
|
@ -1,6 +1,6 @@
|
||||||
# Template file for 'qbe'
|
# Template file for 'qbe'
|
||||||
pkgname=qbe
|
pkgname=qbe
|
||||||
version=1.1
|
version=1.2
|
||||||
revision=1
|
revision=1
|
||||||
build_style=gnu-makefile
|
build_style=gnu-makefile
|
||||||
make_use_env=yes
|
make_use_env=yes
|
||||||
|
@ -9,15 +9,21 @@ maintainer="Bryce Vandegrift <bryce@brycevandegrift.xyz>"
|
||||||
license="MIT"
|
license="MIT"
|
||||||
homepage="https://c9x.me/compile/"
|
homepage="https://c9x.me/compile/"
|
||||||
distfiles="https://c9x.me/compile/release/qbe-${version}.tar.xz"
|
distfiles="https://c9x.me/compile/release/qbe-${version}.tar.xz"
|
||||||
checksum=7d0a53dd40df48072aae317e11ddde15d1a980673160e514e235b9ecaa1db12c
|
checksum=a6d50eb952525a234bf76ba151861f73b7a382ac952d985f2b9af1df5368225d
|
||||||
|
|
||||||
# Currently only aarch64 and x86_64 targets are supported and the checks
|
# Currently only riscv64, aarch64 and x86_64 targets are supported and the checks
|
||||||
# test the compiled binaries.
|
# test the compiled binaries.
|
||||||
case "$XBPS_TARGET_MACHINE" in
|
case "$XBPS_TARGET_MACHINE" in
|
||||||
aarch64*|x86_64*) ;;
|
x86_64*) ;;
|
||||||
*) make_check=no ;;
|
aarch64*) make_check_args="TARGET=arm64" ;;
|
||||||
|
riscv64*) make_check_args="TARGET=rv64" ;;
|
||||||
|
*) make_check=no # no tests for other architectures ;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
|
post_patch() {
|
||||||
|
vsed -e '/^CC/d' -i Makefile
|
||||||
|
}
|
||||||
|
|
||||||
post_install() {
|
post_install() {
|
||||||
vdoc doc/abi.txt
|
vdoc doc/abi.txt
|
||||||
vdoc doc/il.txt
|
vdoc doc/il.txt
|
||||||
|
|
Loading…
Add table
Reference in a new issue