blob: c1e2b2591f1c5331d2c969ea5790dab3e15092b3 (
plain)
1 # Description: a clean C library for processing UTF-8 unicode data
2 # URL: https://juliastrings.github.io/utf8proc/
3 # Maintainer: John Vogel, jvogel4 at stny dot rr dot com
4
5 name=utf8proc
6 version=2.6.1
7 release=1
8 source=(https://github.com/JuliaStrings/utf8proc/archive/v$version/$name-$version.tar.gz)
9
10 build() {
11 cd $name-$version
12
13 make
14 make prefix=/usr DESTDIR=$PKG install
15
16 cp $PKG/usr/lib/pkgconfig/{lib,}utf8proc.pc
17 sed -i 's,^\(Name: \)lib\(utf8proc\),\1\2,' \
18 $PKG/usr/lib/pkgconfig/utf8proc.pc
19 rm $PKG/usr/lib/libutf8proc.a
20 }
|