core/make/PKGBUILD

29 lines
721 B
Bash
Raw Normal View History

2010-05-16 23:08:55 +08:00
# $Id: PKGBUILD 77792 2010-04-18 03:42:45Z allan $
# Maintainer: Allan McRae <allan@archlinux.org>
2010-03-13 23:25:19 +08:00
# Contributor: judd <jvinet@zeroflux.org>
pkgname=make
pkgver=3.81
2010-05-16 23:08:55 +08:00
pkgrel=5
2010-03-13 23:25:19 +08:00
pkgdesc="GNU make utility to maintain groups of programs"
2010-05-16 23:08:55 +08:00
arch=('i686' 'x86_64')
2010-03-13 23:25:19 +08:00
url="http://www.gnu.org/software/make"
license=('GPL')
groups=('base-devel')
2010-05-16 23:08:55 +08:00
depends=('glibc' 'sh')
2010-03-13 23:25:19 +08:00
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
2010-05-16 23:08:55 +08:00
make
}
2010-03-13 23:25:19 +08:00
2010-05-16 23:08:55 +08:00
package() {
cd ${srcdir}/${pkgname}-${pkgver}
make DESTDIR=${pkgdir} install
2010-03-13 23:25:19 +08:00
}