mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 19:47:13 +08:00
38 lines
834 B
Bash
38 lines
834 B
Bash
#
|
|
# Core Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer abveritas@chakra-project.org
|
|
|
|
pkgname=automake
|
|
pkgver=1.11.6
|
|
pkgrel=1
|
|
pkgdesc="A GNU tool for automatically creating Makefiles"
|
|
arch=('any')
|
|
license=('GPL')
|
|
url="http://www.gnu.org/software/automake"
|
|
groups=('base-devel')
|
|
depends=('perl' 'bash')
|
|
makedepends=('autoconf')
|
|
install=automake.install
|
|
source=(ftp://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.gz)
|
|
md5sums=('0286dc30295b62985ca51919202ecfcc')
|
|
|
|
build() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
check()
|
|
{
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
# 1.11 is not really maintained anymore, thefore tests failing is a WONTFIX for upstream
|
|
[ ${pkgver} = "1.11.6" ] || make check
|
|
}
|
|
|
|
package() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
make DESTDIR=${pkgdir} install
|
|
}
|
|
|