diff options
Diffstat (limited to 'community/editorconfig/APKBUILD')
-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 |