mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
24 lines
782 B
Bash
24 lines
782 B
Bash
# $Id: PKGBUILD 14860 2008-10-10 19:59:33Z eric $
|
|
# Maintainer: Eric Belanger <eric@archlinux.org>
|
|
# Contributor: Tobias Kieslich <tobias@archlinux.org>
|
|
|
|
pkgname=gimp-help-2
|
|
pkgver=2.4.2
|
|
pkgrel=1
|
|
pkgdesc="A GIMP help system designed for use with the internal GIMP help browser, external web browser and HTML renderers"
|
|
arch=('i686' 'x86_64')
|
|
url="http://docs.gimp.org/"
|
|
license=('FDL')
|
|
depends=('gimp>=2.4.0')
|
|
makedepends=('docbook-xsl')
|
|
options=('!makeflags')
|
|
source=(ftp://ftp.gimp.org/pub/gimp/help/gimp-help-${pkgver}.tar.bz2)
|
|
md5sums=('497e1212cbd1499d151b85dabaa3875c')
|
|
sha1sums=('461ac31e8299185d3f16c658c5008090691e45ef')
|
|
|
|
build() {
|
|
cd ${srcdir}/gimp-help-${pkgver}
|
|
./configure --prefix=/usr || return 1
|
|
make || return 1
|
|
make DESTDIR=${pkgdir} install || return 1
|
|
}
|