blob: 86a687e80f6abb9be0581cacef91f6775b06ae27 (
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
40
41
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=libmpc
pkgver=0.9
pkgrel=0
pkgdesc="Multiprecision C library"
url="http://www.multiprecision.org/"
arch="all"
license="LGPL-2.1"
depends=
makedepends="gmp-dev mpfr-dev"
install=
subpackages="$pkgname-dev $pkgname-doc"
source="http://www.multiprecision.org/mpc/download/mpc-$pkgver.tar.gz"
_builddir="$srcdir"/mpc-$pkgver
prepare() {
cd "$_builddir"
}
build() {
cd "$_builddir"
# workaround for a bug in configure script
EGREP=egrep \
./configure --prefix=/usr \
--build=${CBUILD} \
--host=${CHOST} \
--sysconfdir=/etc \
--mandir=/usr/share/man \
--infodir=/usr/share/info \
--enable-shared \
|| return 1
make || return 1
}
package() {
cd "$_builddir"
make DESTDIR="$pkgdir" install
}
md5sums="0d6acab8d214bd7d1fbbc593e83dd00d mpc-0.9.tar.gz"
|