diff options
author | Rasmus Thomsen <oss@cogitri.dev> | 2019-05-31 19:22:37 +0200 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2019-06-05 07:48:45 +0000 |
commit | 10eae1348ae2afb7b1f97e4902e4c82f0213a0ce (patch) | |
tree | c90e4893604d11eb719bcdadfa5e77b87bcd1ffd /main | |
parent | 8bb8a7ad6186f90801812f5b5468a4d550b02a59 (diff) | |
download | aports-10eae1348ae2afb7b1f97e4902e4c82f0213a0ce.tar.bz2 aports-10eae1348ae2afb7b1f97e4902e4c82f0213a0ce.tar.xz |
main/fribidi: add -static subpackage
fixes #10530
Diffstat (limited to 'main')
-rw-r--r-- | main/fribidi/APKBUILD | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/main/fribidi/APKBUILD b/main/fribidi/APKBUILD index c433c60d89..3d4878edaa 100644 --- a/main/fribidi/APKBUILD +++ b/main/fribidi/APKBUILD @@ -1,16 +1,13 @@ # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=fribidi pkgver=1.0.5 -pkgrel=0 +pkgrel=1 pkgdesc="Free Implementation of the Unicode Bidirectional Algorithm" url="https://github.com/fribidi/fribidi" arch="all" license="LGPL-2.0-or-later" -subpackages="$pkgname-doc $pkgname-dev" -depends="" -makedepends="" +subpackages="$pkgname-doc $pkgname-static $pkgname-dev" source="https://github.com/fribidi/fribidi/releases/download/v$pkgver/fribidi-$pkgver.tar.bz2" -builddir="$srcdir"/$pkgname-$pkgver build() { cd "$builddir" @@ -18,8 +15,8 @@ build() { --build=$CBUILD \ --host=$CHOST \ --prefix=/usr \ - --disable-static \ --disable-docs \ + --enable-static \ --with-glib=no make } |