mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-01-24 10:32:15 +08:00
29 lines
721 B
Bash
29 lines
721 B
Bash
# $Id: PKGBUILD 77792 2010-04-18 03:42:45Z allan $
|
|
# Maintainer: Allan McRae <allan@archlinux.org>
|
|
# Contributor: judd <jvinet@zeroflux.org>
|
|
|
|
pkgname=make
|
|
pkgver=3.81
|
|
pkgrel=5
|
|
pkgdesc="GNU make utility to maintain groups of programs"
|
|
arch=('i686' 'x86_64')
|
|
url="http://www.gnu.org/software/make"
|
|
license=('GPL')
|
|
groups=('base-devel')
|
|
depends=('glibc' 'sh')
|
|
install=$pkgname.install
|
|
source=(ftp://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.gz)
|
|
md5sums=('a4e9494ac6dc3f6b0c5ff75c5d52abba')
|
|
|
|
build() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
./configure --prefix=/usr \
|
|
--mandir=/usr/share/man --infodir=/usr/share/info
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
make DESTDIR=${pkgdir} install
|
|
}
|