summaryrefslogtreecommitdiff
path: root/extra/gd/PKGBUILD
blob: d00cc4b2ccd252b0fc48b6fc0a57a73e9450a088 (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
26
# $Id: PKGBUILD 64438 2010-01-20 12:11:26Z ibiru $
# Maintainer: Eric Belanger <eric@archlinux.org>

pkgname=gd
pkgver=2.0.36RC1
pkgrel=3
pkgdesc="Library for the dynamic creation of images by programmers"
arch=('i686' 'x86_64')
url="http://www.libgd.org/"
license=('custom')
depends=('perl' 'libpng>=1.4.0' 'fontconfig' 'libjpeg>=8')
options=('!libtool')
source=(http://www.libgd.org/releases/${pkgname}-${pkgver}.tar.bz2 libpng14.patch)
md5sums=('e876979ca3130623a4e7866d9579171a'
         '7921556f4960e8d66cf4fb67ea7101b5')

build() {
  cd "${srcdir}/${pkgname}-${pkgver}"

  patch -Np1 -i ${srcdir}/libpng14.patch || return 1

  ./configure --prefix=/usr --without-xpm || return 1
  make || return 1
  make DESTDIR="${pkgdir}" install || return 1
  install -D -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING" || return 1
}