56 lines
1.6 KiB
Bash
56 lines
1.6 KiB
Bash
# Template build file 'freetype'.
|
|
pkgname=freetype
|
|
version=2.6
|
|
revision=1
|
|
build_style=gnu-configure
|
|
hostmakedepends="pkg-config"
|
|
makedepends="zlib-devel bzip2-devel libpng-devel"
|
|
short_desc="Font rendering engine and library API"
|
|
maintainer="Juan RP <xtraeme@voidlinux.eu>"
|
|
homepage="http://www.freetype.org/"
|
|
license="GPL-2"
|
|
distfiles="${SOURCEFORGE_SITE}/$pkgname/$pkgname-$version.tar.bz2"
|
|
checksum=8469fb8124764f85029cc8247c31e132a2c5e51084ddce2a44ea32ee4ae8347e
|
|
|
|
build_options="ultimate"
|
|
desc_option_ultimate="Enable ultimate patchset"
|
|
|
|
if [ "${build_option_ultimate}" ]; then
|
|
_ultimate_version="2015-06-01"
|
|
_ultimate_wrksrc="${XBPS_BUILDDIR}/fontconfig-ultimate-${_ultimate_version}/"
|
|
distfiles+=" https://github.com/bohoomil/fontconfig-ultimate/archive/${_ultimate_version}.tar.gz"
|
|
checksum+=" b8374961e5ce5412bb06e2bcb06aa3e3a4f7681b2edf3c305a159023f2eef45b"
|
|
conf_files+=" /etc/profile.d/infinality-settings.sh"
|
|
|
|
post_extract() {
|
|
msg_normal "Applying ultimate patchset"
|
|
for P in ${_ultimate_wrksrc}/${pkgname}/*.patch; do
|
|
[[ $P != *"upstream"* ]] && patch -p1 < $P
|
|
done
|
|
}
|
|
|
|
post_install() {
|
|
vmkdir etc/profile.d
|
|
vinstall ${_ultimate_wrksrc}/${pkgname}/infinality-settings.sh 644 etc/profile.d
|
|
}
|
|
else
|
|
post_extract() {
|
|
msg_normal "Applying freetype patches"
|
|
for P in ${FILESDIR}/*.patch; do
|
|
patch -p0 < $P
|
|
done
|
|
}
|
|
fi
|
|
|
|
freetype-devel_package() {
|
|
depends="${makedepends} ${sourcepkg}>=${version}_${revision}"
|
|
short_desc+=" - development files"
|
|
pkg_install() {
|
|
for f in bin include share; do
|
|
vmove usr/${f}
|
|
done
|
|
vmove "usr/lib/*.a"
|
|
vmove "usr/lib/*.so"
|
|
vmove usr/lib/pkgconfig
|
|
}
|
|
}
|