void-packages/srcpkgs/pixman/template

34 lines
893 B
Plaintext
Raw Normal View History

# Template build file for 'pixman'.
pkgname=pixman
2014-07-07 18:22:24 +02:00
version=0.32.6
revision=1
build_style=gnu-configure
2013-03-20 09:05:31 +01: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 15:17:04 +02:00
homepage="http://xorg.freedesktop.org"
license="MIT"
2012-06-30 15:47:02 +02:00
distfiles="${XORG_SITE}/lib/$pkgname-$version.tar.bz2"
2014-07-07 18:22:24 +02:00
checksum=201fc0d7d6bc0017496f2bd27b3ca14224aea0df6b624c5ee2dc0307a4ff14a4
pre_configure() {
case "$XBPS_TARGET_MACHINE" in
arm*) configure_args+=" --disable-arm-iwmmxt --disable-arm-iwmmxt2";;
esac
}
2011-11-07 10:32:59 +01:00
post_install() {
2011-07-13 15:17:04 +02:00
vinstall COPYING 644 usr/share/licenses/$pkgname
}
pixman-devel_package() {
2013-11-11 13:42:11 +01:00
depends="pixman>=${version}_${revision}"
2013-05-09 20:56:51 +02:00
short_desc+=" - development files"
pkg_install() {
vmove usr/include
vmove usr/lib/pkgconfig
vmove "usr/lib/*.a"
2013-08-07 22:22:42 +02:00
vmove "usr/lib/*.so"
}
}