contrib/libuninameslist/Pkgfile

21 lines
512 B
Plaintext
Raw Normal View History

2019-08-09 14:36:39 +02:00
# Description: Large, sparse array mapping each unicode code point to the annotation data for it.
# URL: https://github.com/fontforge/libuninameslist
2023-07-07 20:02:51 +02:00
# Maintainer: Tim Biermann, tbier at posteo dot de
2019-08-09 14:36:39 +02:00
name=libuninameslist
2023-09-30 09:48:58 +02:00
version=20230916
2019-08-09 14:36:39 +02:00
release=1
source=(https://github.com/fontforge/$name/releases/download/$version/$name-dist-$version.tar.gz)
build() {
2023-07-07 20:02:51 +02:00
cd $name-$version
2019-08-09 14:36:39 +02:00
2023-07-07 20:02:51 +02:00
autoreconf -i
automake --foreign -Wall
2019-08-09 14:36:39 +02:00
2023-09-30 09:48:58 +02:00
./configure --prefix=/usr \
--disable-static
2023-07-07 20:02:51 +02:00
make
make DESTDIR=$PKG install
2019-08-09 14:36:39 +02:00
}