summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorLucas Melo2022-02-28 13:02:44 -0300
committerLucas Melo2022-02-28 13:02:44 -0300
commit7351761b51554d217bc71862e26fbfdc854e26e1 (patch)
tree0f8d862d1d4db134124285481e37a9a6b6a6957e
parentbd5d2c0615aec4b0f08ab8a7f7b8f0f3f0d2940a (diff)
downloadaur-7351761b51554d217bc71862e26fbfdc854e26e1.tar.gz
Re-added CXXFLAGS=-O2 when not specified in MAKEFLAGS
-rw-r--r--.SRCINFO3
-rw-r--r--PKGBUILD4
2 files changed, 3 insertions, 4 deletions
diff --git a/.SRCINFO b/.SRCINFO
index da42a5ebc3aa..2c69665608cf 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = soniccd-git
pkgdesc = A full decompilation of Sonic CD 2011, based on the PC remake with improvements & tweaks from the mobile remakes.
pkgver = r476.972e89f
- pkgrel = 1
+ pkgrel = 2
url = https://github.com/Rubberduckycooly/Sonic-CD-11-Decompilation
install = soniccd.install
arch = any
@@ -11,7 +11,6 @@ pkgbase = soniccd-git
depends = libogg
depends = libtheora
depends = libvorbis
- depends = tinyxml2
provides = soniccd
source = git+https://github.com/Rubberduckycooly/Sonic-CD-11-Decompilation.git
source = git+https://github.com/leethomason/tinyxml2.git
diff --git a/PKGBUILD b/PKGBUILD
index 90fd67405901..5f6b98494550 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@
pkgname=soniccd-git
pkgver=r476.972e89f
-pkgrel=1
+pkgrel=2
pkgdesc='A full decompilation of Sonic CD 2011, based on the PC remake with
improvements & tweaks from the mobile remakes.'
arch=('any')
@@ -39,7 +39,7 @@ prepare() {
build() {
cd "$srcdir/Sonic-CD-11-Decompilation"
- make ${MAKEFLAGS:--j$(nproc)} # CXXFLAGS=O2
+ make ${MAKEFLAGS:-CXXFLAGS=-O2 -j$(nproc)}
}
package() {