summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorWheelchairArtist2024-03-17 18:19:46 +0100
committerWheelchairArtist2024-03-17 18:19:46 +0100
commitc6dc187af5a25d3d7e2b7af8e32d5f6ee44150ca (patch)
tree20ff6801b896cc9cb89b54761a4294f77823a32b
parente203d8a47e9ebb6543b8cf2a460f426241d13bf5 (diff)
downloadaur-c6dc187af5a25d3d7e2b7af8e32d5f6ee44150ca.tar.gz
fix compiling errors coming from host CFLAGS by removing those
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD6
2 files changed, 6 insertions, 2 deletions
diff --git a/.SRCINFO b/.SRCINFO
index b45f722f2d40..82985ec996ef 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = wineasio
pkgdesc = ASIO driver implementation for Wine
pkgver = 1.2.0
- pkgrel = 3
+ pkgrel = 4
url = https://github.com/wineasio/wineasio
install = wineasio.install
arch = x86_64
diff --git a/PKGBUILD b/PKGBUILD
index 812689d23259..ce83124cb2d7 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -7,7 +7,7 @@
pkgname=wineasio
pkgver=1.2.0
-pkgrel=3
+pkgrel=4
pkgdesc="ASIO driver implementation for Wine"
url="https://github.com/wineasio/wineasio"
@@ -33,6 +33,10 @@ prepare(){
build() {
cd "$pkgname-$pkgver"
+
+ # fix compiling errors coming from host CFLAGS by removing those
+ CFLAGS=""
+
make 32
make 64
}