mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
24 lines
800 B
Bash
24 lines
800 B
Bash
# $Id: PKGBUILD 44703 2009-07-03 18:08:44Z jgc $
|
|
# Maintainer: Jan de Groot <jgc@archlinux.org>
|
|
|
|
pkgname=gtkhtml
|
|
pkgver=3.26.3
|
|
pkgrel=1
|
|
pkgdesc="A lightweight HTML renderer/editor widget"
|
|
arch=(i686 x86_64)
|
|
license=('GPL')
|
|
depends=('libgnomeui>=2.24.1' 'gnome-icon-theme>=2.26.0' 'enchant>=1.4.2' 'iso-codes>=3.10.1')
|
|
makedepends=('pkgconfig' 'intltool')
|
|
url="http://www.gnome.org"
|
|
options=('!libtool')
|
|
source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/3.26/${pkgname}-${pkgver}.tar.bz2)
|
|
md5sums=('9a9586fa4581ad20f273952fb70e4101')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
./configure --prefix=/usr --sysconfdir=/etc \
|
|
--libexecdir=/usr/lib/gtkhtml \
|
|
--localstatedir=/var --disable-static || return 1
|
|
make || return 1
|
|
make DESTDIR="${pkgdir}" install || return 1
|
|
}
|