blob: 06d8b175648a229506d5874650419ca346c2277c (
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=20221022
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 }
|