42 lines
1.1 KiB
Bash
42 lines
1.1 KiB
Bash
# Template file for 'harfbuzz'
|
|
pkgname=harfbuzz
|
|
version=2.6.4
|
|
revision=1
|
|
build_style=gnu-configure
|
|
configure_args="--with-glib --with-freetype --with-cairo --with-icu --with-graphite2"
|
|
hostmakedepends="automake glib-devel libtool pkg-config"
|
|
makedepends="cairo-devel graphite-devel icu-devel"
|
|
short_desc="OpenType text shaping engine"
|
|
maintainer="Duncaen <duncaen@voidlinux.org>"
|
|
license="MIT"
|
|
homepage="http://www.freedesktop.org/wiki/Software/HarfBuzz/"
|
|
changelog="https://raw.githubusercontent.com/harfbuzz/harfbuzz/master/NEWS"
|
|
distfiles="${FREEDESKTOP_SITE}/harfbuzz/release/${pkgname}-${version}.tar.xz"
|
|
checksum=9413b8d96132d699687ef914ebb8c50440efc87b3f775d25856d7ec347c03c12
|
|
|
|
pre_configure() {
|
|
autoreconf -fi
|
|
}
|
|
|
|
post_install() {
|
|
vlicense COPYING LICENSE
|
|
}
|
|
|
|
libharfbuzz_package() {
|
|
short_desc+=" - runtime library"
|
|
pkg_install() {
|
|
vmove "usr/lib/*.so.*"
|
|
}
|
|
}
|
|
|
|
harfbuzz-devel_package() {
|
|
depends="${makedepends} libharfbuzz>=${version}_${revision}"
|
|
short_desc+=" - development files"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove usr/lib/pkgconfig
|
|
vmove usr/lib/cmake
|
|
vmove "usr/lib/*.so"
|
|
vmove usr/share/gtk-doc
|
|
}
|
|
}
|