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-05-08 01:35:47 +08:00
|
|
|
arch=('i686' 'x86_64')
|
2011-04-17 06:29:38 +08:00
|
|
|
url="http://autogen.sourceforge.net/"
|
|
|
|
license=('GPL3')
|
2013-05-08 01:35:47 +08:00
|
|
|
depends=('guile' 'libxml2')
|
2013-03-23 10:47:59 +08:00
|
|
|
options=('!libtool')
|
2011-04-17 06:29:38 +08:00
|
|
|
install=autogen.install
|
2013-05-08 01:35:47 +08:00
|
|
|
source=(http://ftp.gnu.org/gnu/${pkgname}/rel${pkgver}/${pkgname}-${pkgver}.tar.xz{,.sig})
|
|
|
|
md5sums=('567dd065d24294c5c31517e399c2fcf5'
|
|
|
|
'af72d4d6f27486366e7712c41f61b8fa')
|
2011-04-17 06:29:38 +08:00
|
|
|
|
|
|
|
build() {
|
|
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
2013-05-08 01:35:47 +08:00
|
|
|
./configure --prefix=/usr
|
|
|
|
make
|
2011-04-17 06:29:38 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
|
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
2013-05-08 01:35:47 +08:00
|
|
|
make DESTDIR="${pkgdir}" install
|
2012-01-12 03:48:59 +08:00
|
|
|
}
|