community/io to 2017.09.06-5

This commit is contained in:
Kevin Mihelich 2022-01-30 15:56:29 +00:00
parent 59d853f4f4
commit cfb93ec5e0

View file

@ -8,7 +8,7 @@
pkgname=io
pkgver=2017.09.06
pkgrel=4
pkgrel=5
pkgdesc='IO programming language'
arch=(x86_64)
url='https://iolanguage.com/'
@ -29,13 +29,15 @@ prepare() {
}
build() {
cmake \
cmake \
-B build \
-S $pkgname \
-D CMAKE_BUILD_TYPE=Release \
-D CMAKE_INSTALL_PREFIX=/usr \
-D CMAKE_SKIP_RPATH=1
# ninja requires "-w dupbuild=warn" and/or -w "phonycycle=warn" and still gives an error
-D CMAKE_SKIP_RPATH=1 \
-S $pkgname
# make is used instead of ninja, because ninja results in errors,
# even with '-w dupbuild=warn' and/or -w 'phonycycle=warn'
make -C build
}