42 lines
1.1 KiB
Bash
42 lines
1.1 KiB
Bash
# Template file for 'harfbuzz'
|
|
pkgname=harfbuzz
|
|
version=2.1.3
|
|
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="An OpenType text shaping engine"
|
|
maintainer="maxice8 <thinkabit.ukim@gmail.com>"
|
|
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.bz2"
|
|
checksum=613264460bb6814c3894e3953225c5357402915853a652d40b4230ce5faf0bee
|
|
|
|
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
|
|
}
|
|
}
|