PKGBUILDs/community/flam3/PKGBUILD

23 lines
674 B
Bash
Raw Normal View History

2009-10-10 02:15:33 +00:00
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
# Maintainer: Eric Belanger <eric@archlinux.org>
# Contributor: Stefan Clarke <fm0nk3y@yahoo.co.uk>
pkgname=flam3
pkgver=2.7.18
pkgrel=3
pkgdesc="Tools to create/display fractal flames: algorithmically generated images and animations"
arch=('i686' 'x86_64')
url="http://flam3.com/"
license=('GPL')
depends=('expat' 'libjpeg>=7' 'libpng' 'libxml2')
options=('!libtool')
source=(http://flam3.com/${pkgname}-${pkgver}.tar.gz)
md5sums=('052faba777634799b2958205ddf05545')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
./configure --prefix=/usr || return 1
make || return 1
make DESTDIR="${pkgdir}" install || return 1
}