123456789101112131415161718192021222324252627282930313233343536373839404142 |
- # Template file for 'povray'
- pkgname=povray
- version=3.7.0.8
- revision=5
- build_style=gnu-configure
- _v=${version%.*.*}
- configure_args="COMPILED_BY='Ymir GNU/Linux-libre' --disable-optimiz-arch"
- conf_files="
- /etc/povray/$_v/povray.conf
- /etc/povray/$_v/povray.ini"
- hostmakedepends="git autoconf automake"
- makedepends="boost-devel libpng-devel tiff-devel SDL-devel"
- depends="openexr"
- short_desc="Script-based raytracer for 3D graphic production"
- maintainer="Brenton Horne <brentonhorne77@gmail.com>"
- license="AGPL-3.0-or-later"
- homepage="http://povray.org/"
- distfiles="https://github.com/POV-Ray/povray/archive/v${version}.tar.gz"
- checksum=53d11ebd2972fc452af168a00eb83aefb61387662c10784e81b63e44aa575de4
- nocross="Builds fail on ARM architectures
- Logs are at https://travis-ci.org/void-linux/void-packages/builds/412583835."
- LDFLAGS+=" -Wl,-z,stack-size=1048576"
- # Liberation
- # Some code has been taken from:
- # https://git.parabola.nu/abslibre.git/tree/libre/povray/PKGBUILD
- post_patch() {
- # remove nonfree documentation
- rm -rv doc
- }
- pre_configure() {
- cd $wrksrc/unix
- ./prebuild.sh
- cd ..
- ./bootstrap
- }
- post_install() {
- vlicense LICENSE
- }
|