gmp, mpfr: converted to subpkgs.
--HG-- extra : convert_revision : 8ce5b84c7d3adf91880e38466ba360bd028a464b
This commit is contained in:
parent
04a0248ef1
commit
c8163148da
17
templates/gmp/dev.template
Normal file
17
templates/gmp/dev.template
Normal file
|
@ -0,0 +1,17 @@
|
|||
# Template file for 'gmp-dev'.
|
||||
#
|
||||
short_desc="${short_desc} (development files)"
|
||||
long_desc="${long_desc}
|
||||
|
||||
This package contains files for development, headers, static libs, etc."
|
||||
run_depends="gmp-libs-4.2.4"
|
||||
|
||||
do_install()
|
||||
{
|
||||
local destdir=${XBPS_DESTDIR}/${pkgname}-${version}
|
||||
|
||||
mkdir -p ${destdir}/usr/lib
|
||||
mv ${XBPS_DESTDIR}/${sourcepkg}-${version}/usr/include ${destdir}/usr
|
||||
mv ${XBPS_DESTDIR}/${sourcepkg}-${version}/usr/lib/libgmp.*a \
|
||||
${destdir}/usr/lib
|
||||
}
|
17
templates/gmp/libs.template
Normal file
17
templates/gmp/libs.template
Normal file
|
@ -0,0 +1,17 @@
|
|||
# Template file for 'gmp-libs'.
|
||||
#
|
||||
short_desc="${short_desc} (libraries)"
|
||||
long_desc="${long_desc}
|
||||
|
||||
This package contains only the ${sourcepkg} shared libraries."
|
||||
run_depends="glibc-2.8"
|
||||
|
||||
do_install()
|
||||
{
|
||||
local destdir=${XBPS_DESTDIR}/${pkgname}-${version}
|
||||
|
||||
# Move the shared lib.
|
||||
mkdir -p ${destdir}/usr/lib
|
||||
mv ${XBPS_DESTDIR}/${sourcepkg}-${version}/usr/lib/libgmp.so* \
|
||||
${destdir}/usr/lib
|
||||
}
|
|
@ -1,5 +1,6 @@
|
|||
# Template build file for 'gmp'
|
||||
pkgname=gmp
|
||||
sourcepkg=gmp
|
||||
version=4.2.4
|
||||
distfiles="ftp://ftp.gmplib.org/pub/$pkgname-$version.tar.bz2"
|
||||
build_style=gnu_configure
|
||||
|
@ -23,7 +24,7 @@ long_desc="
|
|||
operations, since GNU MP in many cases has asymptotically faster algorithms."
|
||||
|
||||
base_chroot=yes
|
||||
run_depends="glibc-2.8"
|
||||
subpackages="dev libs"
|
||||
|
||||
pre_configure()
|
||||
{
|
||||
|
|
17
templates/mpfr/dev.template
Normal file
17
templates/mpfr/dev.template
Normal file
|
@ -0,0 +1,17 @@
|
|||
# Template file for 'mpfr-dev'.
|
||||
#
|
||||
short_desc="${short_desc} (development files)"
|
||||
long_desc="${long_desc}
|
||||
|
||||
This package contains files for development, headers, static libs, etc."
|
||||
run_depends="mpfr-libs-4.2.4"
|
||||
|
||||
do_install()
|
||||
{
|
||||
local destdir=${XBPS_DESTDIR}/${pkgname}-${version}
|
||||
|
||||
mkdir -p ${destdir}/usr/lib
|
||||
mv ${XBPS_DESTDIR}/${sourcepkg}-${version}/usr/include ${destdir}/usr
|
||||
mv ${XBPS_DESTDIR}/${sourcepkg}-${version}/usr/lib/libmpfr.*a \
|
||||
${destdir}/usr/lib
|
||||
}
|
17
templates/mpfr/libs.template
Normal file
17
templates/mpfr/libs.template
Normal file
|
@ -0,0 +1,17 @@
|
|||
# Template file for 'mpfr-libs'.
|
||||
#
|
||||
short_desc="${short_desc} (libraries)"
|
||||
long_desc="${long_desc}
|
||||
|
||||
This package contains only the ${sourcepkg} shared libraries."
|
||||
run_depends="glibc-2.8 gmp-libs-4.2.4"
|
||||
|
||||
do_install()
|
||||
{
|
||||
local destdir=${XBPS_DESTDIR}/${pkgname}-${version}
|
||||
|
||||
# Move the shared lib.
|
||||
mkdir -p ${destdir}/usr/lib
|
||||
mv ${XBPS_DESTDIR}/${sourcepkg}-${version}/usr/lib/libmpfr.so* \
|
||||
${destdir}/usr/lib
|
||||
}
|
|
@ -1,5 +1,6 @@
|
|||
# Template build file for 'mpfr'
|
||||
pkgname=mpfr
|
||||
sourcepkg=mpfr
|
||||
version=2.4.0
|
||||
distfiles="http://www.mpfr.org/mpfr-current/$pkgname-$version.tar.bz2"
|
||||
build_style=gnu_configure
|
||||
|
@ -17,4 +18,4 @@ long_desc="
|
|||
|
||||
base_chroot=yes
|
||||
build_depends="gmp-4.2.4"
|
||||
run_depends="glibc-2.8 gmp-4.2.4"
|
||||
subpackages="dev libs"
|
||||
|
|
Loading…
Reference in New Issue
Block a user