mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 20:07:14 +08:00
24 lines
615 B
Bash
24 lines
615 B
Bash
pkgname=autogen
|
|
pkgver=5.18.2
|
|
pkgrel=2
|
|
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' 'libxml2')
|
|
install=autogen.install
|
|
source=(http://ftp.gnu.org/gnu/${pkgname}/rel${pkgver}/${pkgname}-${pkgver}.tar.xz{,.sig})
|
|
md5sums=('1924fdfe36edb3e0fd66add20aca9b70'
|
|
'SKIP')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|