core/autogen/PKGBUILD

28 lines
693 B
Bash

# Maintainer: abveritas[at]chakra-project[dot]org>
pkgname=autogen
pkgver=5.17.2
pkgrel=1
pkgdesc="A tool designed to simplify the creation and maintenance of programs that contain large amounts of repetitious text"
arch=('x86_64')
url="http://autogen.sourceforge.net/"
license=('GPL3')
depends=('guile>=1.8.8' 'libxml2' 'libtool')
options=('!libtool')
install=autogen.install
source=("http://ftp.gnu.org/gnu/${pkgname}/rel${pkgver}/${pkgname}-${pkgver}.tar.xz")
md5sums=('567dd065d24294c5c31517e399c2fcf5')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
./configure --prefix=/usr
make
}
package() {
cd "${srcdir}/${pkgname}-${pkgver}"
make DESTDIR="${pkgdir}" install
}