mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
24 lines
622 B
Bash
24 lines
622 B
Bash
# Maintainer: Alexander Foremny <alexanderforemny@gmail.com>
|
|
# Modified by OpenPogo
|
|
# Successfully builds natively
|
|
|
|
pkgname=make
|
|
pkgver=3.81
|
|
pkgrel=2
|
|
pkgdesc="GNU make utility to maintain groups of programs"
|
|
arch=('arm')
|
|
url="http://www.gnu.org/software/make"
|
|
license=('GPL')
|
|
groups=('base-devel')
|
|
depends=()
|
|
source=(ftp://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.gz)
|
|
md5sums=('a4e9494ac6dc3f6b0c5ff75c5d52abba')
|
|
|
|
build() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
|
|
./configure --prefix=/opt \
|
|
--mandir=/opt/share/man --infodir=/opt/share/info
|
|
make || return 1
|
|
make DESTDIR=${pkgdir} install || return 1
|
|
}
|