mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
29 lines
940 B
Bash
29 lines
940 B
Bash
# $Id: PKGBUILD 54700 2009-10-11 18:35:07Z jgc $
|
|
# Maintainer: Jan de Groot <jgc@archlinux.org>
|
|
# Contributor: Arjan Timmerman <arjan@soufly.nl>
|
|
# Contributor: Tor Krill
|
|
|
|
# PlugApps: Kevin Mihelich <kevin@plugapps.com>
|
|
# - updated to new version, remove this package when abs catches up.
|
|
|
|
plugrel=1
|
|
|
|
pkgname=autogen
|
|
pkgver=5.11.5
|
|
pkgrel=1
|
|
pkgdesc="A tool designed to simplify the creation and maintenance of programs that contain large amounts of repetitious text"
|
|
arch=(i686 x86_64)
|
|
url="http://autogen.sourceforge.net/"
|
|
license=('GPL3')
|
|
depends=('guile>=1.8.6' 'libxml2>=2.7.3' 'libtool>=2.2.6a')
|
|
options=('!libtool' '!makeflags')
|
|
install=autogen.install
|
|
source=(http://downloads.sourceforge.net/autogen/${pkgname}-${pkgver}.tar.bz2)
|
|
md5sums=('51c841eab6114de22b55f77a1c4f85b8')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
./configure --prefix=/usr || return 1
|
|
make || return 1
|
|
make DESTDIR="${pkgdir}" install || return 1
|
|
}
|