summaryrefslogblamecommitdiff
path: root/user/libuninameslist/APKBUILD
blob: 1deffebdc5c0e646a28696be9c8e60e2ed75af8f (plain) (tree)











































                                                                                                                                                                                   
# Contributor: A. Wilcox <awilfox@adelielinux.org>
# Maintainer: A. Wilcox <awilfox@adelielinux.org>
pkgname=libuninameslist
pkgver=20180701
pkgrel=0
pkgdesc="Library of Unicode names and annotation data"
url=" "
arch="all"
license="BSD-3-Clause"
depends=""
makedepends="python3-dev"
subpackages="$pkgname-dev $pkgname-doc py3-uninameslist:py3:noarch"
source="https://github.com/fontforge/libuninameslist/releases/download/$pkgver/libuninameslist-dist-$pkgver.tar.gz"

build() {
	cd "$builddir"
	PYTHON=python3 ./configure \
		--build=$CBUILD \
		--host=$CHOST \
		--prefix=/usr \
		--sysconfdir=/etc \
		--mandir=/usr/share/man \
		--localstatedir=/var
	make
}

check() {
	cd "$builddir"
	make check
}

package() {
	cd "$builddir"
	make DESTDIR="$pkgdir" install
}

py3() {
	pkgdesc="$pkgdesc (Python 3 bindings)"
	depends="python3"
	cd "$builddir"/py
	python3 setup.py install --prefix=/usr --root="$subpkgdir"
}

sha512sums="839f8a0c3a81b4b19ce6ddfa08fa9ca99fdcefe2ef2b2c5515b276fab594fb5325ae9c83b58e19c559c033e880bd098687022c8ec3da028b143f4a72c471f19c  libuninameslist-dist-20180701.tar.gz"