2009-03-19 03:01:31 +01:00
|
|
|
# Template build file 'freetype'.
|
2009-02-09 14:25:13 +01:00
|
|
|
pkgname=freetype
|
2013-12-09 10:04:21 +01:00
|
|
|
version=2.5.2
|
2013-05-11 18:55:36 +02:00
|
|
|
revision=1
|
2011-10-24 14:14:47 +02:00
|
|
|
build_style=gnu-configure
|
2013-06-20 17:58:58 +02:00
|
|
|
hostmakedepends="pkg-config which"
|
2013-06-20 20:01:15 +02:00
|
|
|
makedepends="zlib-devel bzip2-devel libpng-devel"
|
2008-10-01 17:07:54 +02:00
|
|
|
short_desc="Font rendering engine and library API"
|
|
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
2011-07-09 18:11:15 +02:00
|
|
|
homepage="http://www.freetype.org/"
|
|
|
|
license="GPL-2"
|
2012-06-15 23:04:12 +02:00
|
|
|
distfiles="${SOURCEFORGE_SITE}/$pkgname/$pkgname-$version.tar.bz2"
|
2013-12-09 10:04:21 +01:00
|
|
|
checksum=4ff4bd393aa01071ec7b849d035508a505a78f88b2bcf25ff11e58e43c0b9def
|
2013-04-12 11:16:02 +02:00
|
|
|
|
2013-11-25 14:33:59 +01:00
|
|
|
do_configure() {
|
|
|
|
if [ "$CROSS_BUILD" ]; then
|
|
|
|
export LIBPNG_CFLAGS="$(pkg-config --cflags libpng)"
|
|
|
|
export LIBPNG_LDFLAGS="$(pkg-config --libs libpng)"
|
|
|
|
fi
|
|
|
|
./configure ${configure_args}
|
|
|
|
}
|
2013-06-20 18:00:34 +02:00
|
|
|
|
2013-04-12 11:16:02 +02:00
|
|
|
freetype-devel_package() {
|
2013-11-25 14:33:59 +01:00
|
|
|
depends="zlib-devel bzip2-devel ${sourcepkg}>=${version}_${revision}"
|
2013-05-11 18:55:36 +02:00
|
|
|
short_desc+=" - development files"
|
2013-04-12 11:16:02 +02:00
|
|
|
pkg_install() {
|
|
|
|
for f in bin include share; do
|
|
|
|
vmove usr/${f}
|
|
|
|
done
|
|
|
|
vmove "usr/lib/*.a"
|
2013-11-25 14:33:59 +01:00
|
|
|
vmove "usr/lib/*.so"
|
2013-04-12 11:16:02 +02:00
|
|
|
vmove usr/lib/pkgconfig
|
|
|
|
}
|
|
|
|
}
|