mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-11 02:54:36 +08:00
25 lines
671 B
Bash
25 lines
671 B
Bash
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=('i686' 'x86_64')
|
|
url="http://autogen.sourceforge.net/"
|
|
license=('GPL3')
|
|
depends=('guile' 'libxml2')
|
|
options=('!libtool')
|
|
install=autogen.install
|
|
source=(http://ftp.gnu.org/gnu/${pkgname}/rel${pkgver}/${pkgname}-${pkgver}.tar.xz{,.sig})
|
|
md5sums=('567dd065d24294c5c31517e399c2fcf5'
|
|
'af72d4d6f27486366e7712c41f61b8fa')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|