summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarius Orcsik2020-05-02 10:56:31 +0200
committerMarius Orcsik2020-05-02 10:56:31 +0200
commit8687f255f6198ba041e903c7e3285bce31b0f7ab (patch)
treeabf42bb612827d070a0b15346b2e0ae22b155d37
parentd7a5306a6ff22ce5e0b2793c5f0249c17b5f76d3 (diff)
downloadaur-8687f255f6198ba041e903c7e3285bce31b0f7ab.tar.gz
Apparently -Dbuildtype and --buildtype are different
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD4
2 files changed, 3 insertions, 3 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 92c7a06695d1..e67178fde94c 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = mpris-scrobbler
pkgdesc = Minimalistic user daemon which submits the currently playing song to libre.fm and compatible services.
pkgver = 0.3.5
- pkgrel = 3
+ pkgrel = 4
url = https://github.com/mariusor/mpris-scrobbler
arch = x86
arch = x86_64
diff --git a/PKGBUILD b/PKGBUILD
index cee23df50f0c..22e4cca77235 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,7 +1,7 @@
# Maintainer: Marius Orcsik <marius@littr.me>
pkgname=mpris-scrobbler
pkgver=0.3.5
-pkgrel=3
+pkgrel=4
pkgdesc="Minimalistic user daemon which submits the currently playing song to libre.fm and compatible services."
arch=('x86' 'x86_64')
url="https://github.com/mariusor/mpris-scrobbler"
@@ -16,7 +16,7 @@ validpgpkeys=('57D7D1ACC58E01C56961F9FB0FBA983067613EE6')
build() {
cd "$pkgname-$pkgver"
rm -rf build/
- meson --buildtype release --strip -Db_pie=true -Db_lto=true -Db_ndebug=if-release -Db_lto=true -Db_asneeded=true -Dversion=${pkgver}-${pkgrel} --prefix=/usr --unity on build/
+ meson -Dbuildtype=release --strip -Db_pie=true -Db_ndebug=if-release -Db_lto=true -Db_asneeded=true -Dversion=${pkgver}-${pkgrel} --prefix=/usr --unity on build/
ninja -C build/
}