summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarius Orcsik2022-06-15 14:20:02 +0200
committerMarius Orcsik2022-06-15 14:20:02 +0200
commitf9b7056a7548ab9d5656a8dadb379a47e0dc4685 (patch)
treef6f3de6b2b2b4db7ca219d405d199cc39397f4d6
parentdba2f2d5af2994649e328c7064f292b4ff1e8c41 (diff)
downloadaur-f9b7056a7548ab9d5656a8dadb379a47e0dc4685.tar.gz
Added a new warning quieting for -Waddress
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD4
2 files changed, 3 insertions, 3 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 636344532336..17ecf9169a54 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.5.0
- pkgrel = 3
+ pkgrel = 4
url = https://github.com/mariusor/mpris-scrobbler
arch = x86
arch = x86_64
diff --git a/PKGBUILD b/PKGBUILD
index 8becdb6959fa..2766eaefcbf6 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,7 +1,7 @@
# Maintainer: Marius Orcsik <marius@littr.me>
pkgname=mpris-scrobbler
pkgver=0.5.0
-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 @@ sha256sums=('044290a9c07e5f6b5fbcb665ded2528e07a56e024f369857967f950a814ca775')
build() {
cd "${pkgname}-${pkgver}"
rm -rf build/
- export CFLAGS='-Wno-stringop-truncation -Wno-unused-parameter -Wno-free-nonheap-object -Wno-format-truncation'
+ export CFLAGS='-Wno-stringop-truncation -Wno-unused-parameter -Wno-free-nonheap-object -Wno-format-truncation -Wno-address'
meson -Dbuildtype=release -Db_pie=true -Db_ndebug=if-release -Dversion="${pkgver}-${pkgrel}" --prefix=/usr --unity on build/
ninja -C build/
}