summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: fda8d6eb174a7d10ef066050ed1eb084ecef7298 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# Author: Madotsuki <madotsuki@national.shitposting.agency>

pkgname=mandelbulber2
pkgver=2.04
pkgrel=1
pkgdesc="3D application designed to render 3D fractals such as the Mandelbulb, Mandelbox, BulbBox, JuliaBulb, Menger Sponge, and Iterated Function Systems. Rewritten from scratch with new Qt based interface."
arch=('any')
url="http://www.mandelbulber.com/"
license=('GPL3')
depends=('libjpeg-turbo' 'qt5-tools' 'libpng12' 'gsl' 'openmpi')
source=('mandelbulber::http://downloads.sourceforge.net/project/mandelbulber/Mandelbulber%20v2/source%20-%20multiplatform/mandelbulber2-2.04.tar.gz?r=&ts=1438651548')
md5sums=('4f0d86a0f460ffa2f2a2a5a2072a977a')

build()
{ 
	cd "$srcdir/$pkgname-$pkgver/makefiles"
	qmake mandelbulber.pro
	make PREFIX=/usr all
}

package()
{
	cd "$srcdir/$pkgname-$pkgver/makefiles"
	make PREFIX=/usr install
}