summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorBuildTools2021-11-01 10:38:13 +0100
committerBuildTools2021-11-01 10:38:13 +0100
commit6843121fc5e2f9a1612dcda3215fa702a0436106 (patch)
treed729d04b35ab9c27c9f6808d4a7192b72ba2c34a
parent970d77bb852ad97d90fd7b23e25653b79b89fe01 (diff)
downloadaur-6843121fc5e2f9a1612dcda3215fa702a0436106.tar.gz
Temporarily removing portmidi from dependencies and building without it
-rw-r--r--.SRCINFO3
-rw-r--r--PKGBUILD7
2 files changed, 5 insertions, 5 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 48b0f75c0937..ec3e77f3557a 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,6 +1,6 @@
pkgbase = dsda-doom-git
pkgdesc = Fork of PrBoom+ with extra tooling for demo recording and playback, with a focus on speedrunning (git version)
- pkgver = r3718.0cbfc803
+ pkgver = r5206.7890fdd7
pkgrel = 1
url = https://github.com/kraflab/dsda-doom
arch = x86_64
@@ -11,7 +11,6 @@ pkgbase = dsda-doom-git
depends = fluidsynth
depends = glu
depends = libmad
- depends = portmidi
depends = sdl2_image
depends = sdl2_mixer
depends = sdl2_net
diff --git a/PKGBUILD b/PKGBUILD
index 14ebbd6ded57..c632f7a3edfd 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,12 +1,12 @@
# Maintainer: Mike Cuche <cuche@mailbox.org>
pkgname=dsda-doom-git
-pkgver=r3718.0cbfc803
+pkgver=r5206.7890fdd7
pkgrel=1
pkgdesc="Fork of PrBoom+ with extra tooling for demo recording and playback, with a focus on speedrunning (git version)"
arch=('x86_64')
url="https://github.com/kraflab/dsda-doom"
license=('GPL')
-depends=('fluidsynth' 'glu' 'libmad' 'portmidi' 'sdl2_image' 'sdl2_mixer' 'sdl2_net' 'dumb')
+depends=('fluidsynth' 'glu' 'libmad' 'sdl2_image' 'sdl2_mixer' 'sdl2_net' 'dumb') # temporarily removed 'portmidi'
makedepends=('cmake' 'imagemagick' 'git')
provides=('dsda-doom')
conflicts=('dsda-doom')
@@ -22,7 +22,8 @@ pkgver() {
build() {
cd "${srcdir}/dsda-doom/prboom2"
cmake . -DCMAKE_INSTALL_PREFIX=/usr \
- -DCMAKE_BUILD_TYPE=Release
+ -DWITH_PORTMIDI=Off \
+ -DCMAKE_BUILD_TYPE=Release #WITH_PORTMIDI=Off: https://aur.archlinux.org/packages/dsda-doom-git/#comment-833710
make
}