mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
23 lines
743 B
Bash
23 lines
743 B
Bash
# $Id: PKGBUILD 46432 2009-07-18 10:20:33Z jgc $
|
|
# Maintainer: Jan de Groot <jgc@archlinux.org>
|
|
|
|
pkgname=gnome-build
|
|
pkgver=2.24.1
|
|
pkgrel=1
|
|
pkgdesc="Gnome build framework"
|
|
arch=('i686' 'x86_64')
|
|
license=('GPL')
|
|
url="http://www.gnome.org"
|
|
depends=('gdl>=2.24.0' 'perl-locale-gettext' 'libgnomeui>=2.24.0')
|
|
makedepends=('pkgconfig' 'intltool')
|
|
options=('!libtool' '!makeflags')
|
|
source=(http://ftp.gnome.org/pub/GNOME/sources/${pkgname}/2.24/${pkgname}-${pkgver}.tar.bz2)
|
|
md5sums=('b35c918b6c0c70652e9eb1d2e45138f1')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
./configure --prefix=/usr --sysconfdir=/etc \
|
|
--localstatedir=/var --disable-static || return 1
|
|
make || return 1
|
|
make DESTDIR="${pkgdir}" install || return 1
|
|
}
|