void-packages/srcpkgs/pixman/template

34 lines
893 B
Plaintext
Raw Normal View History

# Template build file for 'pixman'.
pkgname=pixman
2014-07-07 16:22:24 +00:00
version=0.32.6
revision=1
build_style=gnu-configure
2013-03-20 08:05:31 +00:00
configure_args="--disable-gtk" # do not require gtk+!
hostmakedepends="pkg-config perl"
short_desc="Library of low-level pixel manipulation routines"
maintainer="Juan RP <xtraeme@gmail.com>"
2011-07-13 13:17:04 +00:00
homepage="http://xorg.freedesktop.org"
license="MIT"
2012-06-30 13:47:02 +00:00
distfiles="${XORG_SITE}/lib/$pkgname-$version.tar.bz2"
2014-07-07 16:22:24 +00:00
checksum=201fc0d7d6bc0017496f2bd27b3ca14224aea0df6b624c5ee2dc0307a4ff14a4
pre_configure() {
case "$XBPS_TARGET_MACHINE" in
arm*) configure_args+=" --disable-arm-iwmmxt --disable-arm-iwmmxt2";;
esac
}
2011-11-07 09:32:59 +00:00
post_install() {
2011-07-13 13:17:04 +00:00
vinstall COPYING 644 usr/share/licenses/$pkgname
}
pixman-devel_package() {
2013-11-11 12:42:11 +00:00
depends="pixman>=${version}_${revision}"
2013-05-09 18:56:51 +00:00
short_desc+=" - development files"
pkg_install() {
vmove usr/include
vmove usr/lib/pkgconfig
vmove "usr/lib/*.a"
2013-08-07 20:22:42 +00:00
vmove "usr/lib/*.so"
}
}