mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-01-26 15:12:12 +08:00
29 lines
779 B
Bash
29 lines
779 B
Bash
#
|
|
# Core Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer (i686): Phil Miller <philm[at]chakra-project[dog]org>
|
|
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
|
|
|
|
# include global config
|
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
|
|
|
pkgname=automake
|
|
pkgver=1.11.1
|
|
pkgrel=2
|
|
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')
|
|
install=automake.install
|
|
source=(ftp://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.gz)
|
|
md5sums=('4ee7f0ff5f0e467d58b6bd5da96b1c74')
|
|
|
|
build() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
./configure --prefix=/usr
|
|
make || return 1
|
|
make DESTDIR=${pkgdir} install || return 1
|
|
}
|