diff options
author | Rasmus Thomsen <oss@cogitri.dev> | 2020-03-02 16:07:02 +0100 |
---|---|---|
committer | Leo <thinkabit.ukim@gmail.com> | 2020-03-03 07:52:28 -0300 |
commit | b5f8ece2e2ec2b90bd37ce1972932a2592cef85d (patch) | |
tree | ba48db1aed717196c3f9a0632703d67a86e38cdf /community/girara | |
parent | e0c690d5e38a10e8c98c9584cf6b2e207ddba5a9 (diff) | |
download | aports-b5f8ece2e2ec2b90bd37ce1972932a2592cef85d.tar.bz2 aports-b5f8ece2e2ec2b90bd37ce1972932a2592cef85d.tar.xz |
community/*: add --buildtype=plain to meson packages which don't specify a buildtype
Diffstat (limited to 'community/girara')
-rw-r--r-- | community/girara/APKBUILD | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/community/girara/APKBUILD b/community/girara/APKBUILD index 5cd98c771e..c327cc9e87 100644 --- a/community/girara/APKBUILD +++ b/community/girara/APKBUILD @@ -4,7 +4,7 @@ # Maintainer: Jean-Louis Fuchs <ganwell@fangorn.ch> pkgname=girara pkgver=0.3.4 -pkgrel=0 +pkgrel=1 pkgdesc="girara - gtk user interface that focuses on simplicity and minimalism" url="https://git.pwmt.org/pwmt/girara" arch="all" @@ -18,7 +18,7 @@ source="https://git.pwmt.org/pwmt/girara/-/archive/$pkgver/girara-$pkgver.tar.gz build() { - meson build --prefix=/usr + meson build --prefix=/usr --buildtype=plain ninja -C build } |