diff options
author | Jakub Jirutka <jakub@jirutka.cz> | 2016-09-02 17:50:52 +0200 |
---|---|---|
committer | Jakub Jirutka <jakub@jirutka.cz> | 2016-09-02 17:55:18 +0200 |
commit | 731ddc3ac28995a3a45422d7807e1c6f323f9263 (patch) | |
tree | 587d8f436c7f3b2ec0627e5dd054e2de4b552f77 /community/editorconfig | |
parent | 0d06290e3f50302e84798c172004e73cbf125311 (diff) | |
download | aports-731ddc3ac28995a3a45422d7807e1c6f323f9263.tar.bz2 aports-731ddc3ac28995a3a45422d7807e1c6f323f9263.tar.xz |
community/editorconfig: fix libdir and enable for all archs
Diffstat (limited to 'community/editorconfig')
-rw-r--r-- | community/editorconfig/APKBUILD | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/community/editorconfig/APKBUILD b/community/editorconfig/APKBUILD index b93b5dabcc..40ce4aa39c 100644 --- a/community/editorconfig/APKBUILD +++ b/community/editorconfig/APKBUILD @@ -2,10 +2,10 @@ # Maintainer: Paul Morgan <jumanjiman@gmail.com> pkgname=editorconfig pkgver=0.12.1 -pkgrel=0 +pkgrel=1 pkgdesc="EditorConfig core library written in C (for use by plugins supporting EditorConfig parsing)" url="https://github.com/editorconfig/editorconfig-core-c" -arch="x86_64" +arch="all" license="BSD" # "Simplified" http://opensource.org/licenses/BSD-2-Clause depends="" depends_dev="" @@ -31,6 +31,7 @@ build() { cmake . \ -DCMAKE_BUILD_TYPE=Release \ -DCMAKE_INSTALL_PREFIX=/usr \ + -DCMAKE_INSTALL_LIBDIR=lib \ -DINI_ALLOW_MULTILINE=1 \ || return 1 make || return 1 |