summaryrefslogtreecommitdiffstats
path: root/main/autoconf/APKBUILD
blob: a5bd4d7b9537e8225d295003355af9a98f8f9e11 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=autoconf
pkgver=2.68
pkgrel=0
pkgdesc="A GNU tool for automatically configuring source code"
arch="x86 x86_64"
license="GPL2 GPL3"
url="http://www.gnu.org/software/autoconf"
depends="m4 perl"
source="ftp://ftp.gnu.org/pub/gnu/${pkgname}/${pkgname}-${pkgver}.tar.gz
	"
subpackages="$pkgname-doc"

prepare() {
	cd "$srcdir"/$pkgname-$pkgver
	for i in $source; do
		case $i in
		*.patch)
			msg "Applying $i"
			patch -p1 -i "$srcdir"/$i || return 1
		esac
	done
}

build() {
	cd "$srcdir"/$pkgname-$pkgver
	M4=/usr/bin/m4 ./configure --prefix=/usr
	make || return 1
}

package() {
	cd "$srcdir"/$pkgname-$pkgver
	make DESTDIR="$pkgdir" install || return 1
	rm -f "$pkgdir"/usr/share/info/dir
	# conflict with bintuils
	rm -f "$pkgdir"/usr/share/info/standards.info
}

md5sums="c3b5247592ce694f7097873aa07d66fe  autoconf-2.68.tar.gz"