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