blob: f0af8fb518f71ad86d45f75e014cb3729b097abc (
plain)
1 # Description: Large, sparse array mapping each unicode code point to the annotation data for it.
2 # URL: https://github.com/fontforge/libuninameslist
3 # Maintainer: Danny Rawlins, crux at romster dot me
4
5 name=libuninameslist
6 version=20200413
7 release=1
8 source=(https://github.com/fontforge/$name/releases/download/$version/$name-dist-$version.tar.gz)
9
10 build() {
11 cd $name-$version
12
13 autoreconf -i
14 automake --foreign -Wall
15
16 ./configure --prefix=/usr
17 make
18 make DESTDIR=$PKG install
19 }
|