mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
34 lines
1.3 KiB
Bash
34 lines
1.3 KiB
Bash
# $Id: PKGBUILD 44449 2009-07-02 05:31:38Z allan $
|
|
# Contributor: Tom Newsom <Jeepster@gmx.co.uk>
|
|
# Maintainer: tobias <tobias@archlinux.org>
|
|
# Modifications made by: red_over_blue and neri
|
|
|
|
pkgname=povray
|
|
pkgver=3.6.1
|
|
_majorver=3.6
|
|
pkgrel=5
|
|
pkgdesc="A script based raytracer for high-quality three-dimensional graphics"
|
|
arch=(i686 x86_64)
|
|
license=('custom')
|
|
url="http://povray.org"
|
|
depends=('gcc' 'zlib' 'libjpeg>=7' 'libtiff>=3.8.2-5' 'libpng' 'libxpm')
|
|
backup=('etc/povray.conf' 'etc/povray.ini')
|
|
source=(ftp://ftp.povray.org/pub/povray/Official/Unix/$pkgname-$pkgver.tar.bz2)
|
|
md5sums=('b5789bb7eeaed0809c5c82d0efda571d')
|
|
|
|
build() {
|
|
cd $startdir/src/$pkgname-$pkgver
|
|
./configure --prefix=/usr --sysconfdir=/etc COMPILED_BY="ArchLinux" \
|
|
--disable-optimiz --enable-strip
|
|
make || return 1
|
|
make DESTDIR=$startdir/pkg sysconfdir=$startdir/pkg/etc install
|
|
# correct the pathes in the ini file
|
|
sed -i "s|/usr/local/share|/usr/share|g" $startdir/pkg/etc/$pkgname/$_majorver/povray.ini
|
|
# install licenses
|
|
install -Dm 644 doc/povlegal.doc \
|
|
${startdir}/pkg/usr/share/licenses/${pkgname}/LICENSE
|
|
install -Dm 644 doc/distribution-license.txt \
|
|
${startdir}/pkg/usr/share/licenses/${pkgname}/distribution-license.txt
|
|
install -Dm 644 doc/source-license.txt \
|
|
${startdir}/pkg/usr/share/licenses/${pkgname}/source-license.txt
|
|
}
|