mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-02-14 04:12:25 +01:00
Upstream bugreports reports: http://savannah.gnu.org/bugs/index.php?30612 http://savannah.gnu.org/bugs/index.php?30723 Fixes building of dev86.
40 lines
878 B
Plaintext
40 lines
878 B
Plaintext
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=make
|
|
pkgver=3.82
|
|
pkgrel=2
|
|
pkgdesc="GNU make utility to maintain groups of programs"
|
|
url="http://www.gnu.org/software/make"
|
|
arch="all"
|
|
license=GPL
|
|
depends=
|
|
subpackages="$pkgname-doc"
|
|
source="ftp://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.gz
|
|
make-3.82-savannah-bugs-30612-30723.patch"
|
|
|
|
_builddir="$srcdir"/$pkgname-$pkgver
|
|
prepare() {
|
|
cd "$_builddir"
|
|
for i in $source; do
|
|
case $i in
|
|
*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
|
|
esac
|
|
done
|
|
}
|
|
|
|
build() {
|
|
cd "$_builddir"
|
|
./configure --prefix=/usr \
|
|
--mandir=/usr/share/man \
|
|
--infodir=/usr/share/info \
|
|
--disable-nls
|
|
make || return 1
|
|
}
|
|
|
|
package() {
|
|
cd "$_builddir"
|
|
make DESTDIR="$pkgdir" install
|
|
}
|
|
|
|
md5sums="7f7c000e3b30c6840f2e9cf86b254fac make-3.82.tar.gz
|
|
74e598a2052f7d98e3495ea9d917ecf4 make-3.82-savannah-bugs-30612-30723.patch"
|