Skip to content
Snippets Groups Projects
Commit b975705e authored by Sören Tempel's avatar Sören Tempel
Browse files

main/libmpdclient: set meson buildtype to release

Default is debug :(
parent 0a68e55f
No related branches found
No related tags found
No related merge requests found
# Maintainer: Natanael Copa <ncopa@alpinelinux.org> # Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=libmpdclient pkgname=libmpdclient
pkgver=2.13 pkgver=2.13
pkgrel=0 pkgrel=1
pkgdesc="An asynchronous API library for interfacing MPD in the C, C++ & Objective C languages" pkgdesc="An asynchronous API library for interfacing MPD in the C, C++ & Objective C languages"
url="https://www.musicpd.org/libs/libmpdclient" url="https://www.musicpd.org/libs/libmpdclient"
arch="all" arch="all"
...@@ -14,7 +14,13 @@ builddir="$srcdir/$pkgname-$pkgver" ...@@ -14,7 +14,13 @@ builddir="$srcdir/$pkgname-$pkgver"
build() { build() {
cd "$builddir" cd "$builddir"
meson --prefix=/usr . output meson \
--prefix=/usr \
--sysconfdir=/etc \
--mandir=/usr/share/man \
--localstatedir=/var \
--buildtype=release \
. output
ninja -C output ninja -C output
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment