diff options
author | Leo <thinkabit.ukim@gmail.com> | 2019-07-29 00:58:56 -0300 |
---|---|---|
committer | Leo <thinkabit.ukim@gmail.com> | 2019-07-29 04:43:42 -0300 |
commit | 5e6a9a6b0d054ed5af309a5411817e348d859b66 (patch) | |
tree | f656273576d7be24b646bf84c3836bfebde7e48a /testing/cldr-emoji-annotation/APKBUILD | |
parent | 2360eca612212e3a800170a0869f56ecde2e81d4 (diff) | |
download | aports-5e6a9a6b0d054ed5af309a5411817e348d859b66.tar.bz2 aports-5e6a9a6b0d054ed5af309a5411817e348d859b66.tar.xz |
testing/cldr-emoji-annotation: fix pkgconfig path
Diffstat (limited to 'testing/cldr-emoji-annotation/APKBUILD')
-rw-r--r-- | testing/cldr-emoji-annotation/APKBUILD | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/testing/cldr-emoji-annotation/APKBUILD b/testing/cldr-emoji-annotation/APKBUILD index 2873fe0359..7d4f9708e8 100644 --- a/testing/cldr-emoji-annotation/APKBUILD +++ b/testing/cldr-emoji-annotation/APKBUILD @@ -2,7 +2,7 @@ pkgname=cldr-emoji-annotation pkgver=33.1.0_p0 _tag=${pkgver/_p/_} -pkgrel=0 +pkgrel=1 pkgdesc="Emoji annotation files in CLDR" arch="noarch" url="https://github.com/fujiwarat/cldr-emoji-annotation" @@ -12,15 +12,17 @@ source="$pkgname-$pkgver.tar.gz::https://github.com/fujiwarat/$pkgname/archive/$ builddir="$srcdir/$pkgname-$_tag" build() { - cd "$builddir" ./autogen.sh --prefix=/usr make } package() { - cd "$builddir" make DESTDIR="$pkgdir" install install -Dm644 unicode-license.txt "$pkgdir"/usr/share/licenses/$pkgname/license + + # TODO(leo): pkgconfig file has weird version so a pc: is not made + mkdir -p "$pkgdir"/usr/lib + mv "$pkgdir"/usr/share/pkgconfig "$pkgdir"/usr/lib } sha512sums="57dc2b7c8ce4b287eb83113b4d66f5359ce0e03a86477926705864d997bf87a5638dd66414b8ec4549a887cd328c9f996249269be4ca05f0d86d00393e55c513 cldr-emoji-annotation-33.1.0_p0.tar.gz" |