mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-15 05:32:26 +01:00
28 lines
609 B
Plaintext
28 lines
609 B
Plaintext
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=make
|
|
pkgver=3.81
|
|
pkgrel=3
|
|
pkgdesc="GNU make utility to maintain groups of programs"
|
|
url="http://www.gnu.org/software/make"
|
|
license=GPL
|
|
depends=
|
|
subpackages="$pkgname-doc"
|
|
source="ftp://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.gz"
|
|
|
|
_builddir="$srcdir"/$pkgname-$pkgver
|
|
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='a4e9494ac6dc3f6b0c5ff75c5d52abba make-3.81.tar.gz'
|