diff options
Diffstat (limited to 'repo/devel/mpc.xibuild')
-rw-r--r-- | repo/devel/mpc.xibuild | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/repo/devel/mpc.xibuild b/repo/devel/mpc.xibuild index 5fd5898..dde3750 100644 --- a/repo/devel/mpc.xibuild +++ b/repo/devel/mpc.xibuild @@ -2,15 +2,18 @@ DEPS=(mpfr) -SOURCE=http://www.multiprecision.org/downloads/mpc-1.2.0.tar.gz +PKG_VER=1.2.0 +SOURCE=http://www.multiprecision.org/downloads/mpc-$PKG_VER.tar.gz DESC="Library for the arithmetic of complex numbers with arbitrarily high precision" build () { - ./configure --prefix=/usr --disable-static --docdir=/usr/share/doc/mpc-1.2.0 + ./configure --prefix=/usr --disable-static --docdir=/usr/share/doc/mpc-$PKG_VER make make html +} +check () { make check } |