diff options
author | Tim Biermann <tbier@posteo.de> | 2020-11-03 20:01:06 +0000 |
---|---|---|
committer | Tim Biermann <tbier@posteo.de> | 2020-11-03 20:01:06 +0000 |
commit | f91246c05c566c8c8f2151a0498c2b13d1979b02 (patch) | |
tree | 6aa87c0bb6d6d60afe15b0f5050a36e29e385f8f /mpd | |
parent | 53314ba162fa56209382f0cc8a621a58efb52d77 (diff) | |
download | contrib-f91246c05c566c8c8f2151a0498c2b13d1979b02.tar.gz contrib-f91246c05c566c8c8f2151a0498c2b13d1979b02.tar.xz |
mpd: updated meson syntax
Diffstat (limited to 'mpd')
-rw-r--r-- | mpd/.signature | 4 | ||||
-rw-r--r-- | mpd/Pkgfile | 9 |
2 files changed, 8 insertions, 5 deletions
diff --git a/mpd/.signature b/mpd/.signature index c0a12ae6d..9a311e151 100644 --- a/mpd/.signature +++ b/mpd/.signature @@ -1,6 +1,6 @@ untrusted comment: verify with /etc/ports/contrib.pub -RWSagIOpLGJF33ETRFeqx79KM7lcpmAiDz5ynyh2zMIwiE7bZgn7nB4xxFze3vr3n+q0VZ4bh1GZaw01thfqmWPUoDNVl51+vgs= -SHA256 (Pkgfile) = 1da39e86ea02ebdc87e29b6e5776613eb1b91275be868a773107d9a93a362957 +RWSagIOpLGJF32lTjnQR2sUtO3IXPYzSp9bJtFpuxYZlb14V7IIPzJO/PDXa96XwpcdzUfI1dz/0sP/49Nqc37rbHInfJXoUfAo= +SHA256 (Pkgfile) = dfb14d440d743a209a5db45344cc0166a1eb5c71c56db79b339fb5212968d6f4 SHA256 (.footprint) = fbed54c68de1c373369d75e82e5ae5c6fb470a1841286a16a135ce21deb42de9 SHA256 (mpd-0.22.2.tar.xz) = 361b5b2f0797f14d2a7df64e63ae758e71b22aba08050df7ea7f2854f2918d36 SHA256 (mpd) = ec90dbf45d72c30b0837e2caed55df9c28b00416a92838012e1aea8cfe704ce3 diff --git a/mpd/Pkgfile b/mpd/Pkgfile index eb2129423..1e86c628f 100644 --- a/mpd/Pkgfile +++ b/mpd/Pkgfile @@ -11,11 +11,14 @@ release=1 source=(https://www.musicpd.org/download/mpd/${version%.*}/$name-$version.tar.xz mpd) build() { - meson $name-$version build \ + meson setup $name-$version build \ --prefix=/usr \ + --buildtype=plain \ + -Db_ndebug=true \ --sysconfdir=/etc/mpd \ - -Dmpcdec=disabled - ninja -C build -j ${JOBS-1} + -Dmpcdec=disabled \ + -Ddocumentation=disabled + meson compile -C build -j ${JOBS-1} DESTDIR=$PKG meson install -C build install -Dm 0644 $SRC/$name-$version/doc/mpdconf.example $PKG/etc/mpd/mpd.conf |