Skip to content

Commit

Permalink
Merge pull request #1595 from mariux64/update-mpfr-402
Browse files Browse the repository at this point in the history
mpfr: update to lib.6 and compat to lib.4
  • Loading branch information
wwwutz authored Jan 17, 2020
2 parents d7ae7b7 + 66a911b commit 92694db
Show file tree
Hide file tree
Showing 3 changed files with 85 additions and 22 deletions.
22 changes: 0 additions & 22 deletions mpfr-3.1.3-1.bee

This file was deleted.

41 changes: 41 additions & 0 deletions mpfr.be0
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
#!/usr/bin/env beesh

# BEE_VERSION mpfr-4.0.2-0

# more info: https://foo.bar.com

SRCURL[0]="https://ftp.gnu.org/pub/gnu/mpfr/mpfr-${PKGVERSION}.tar.gz"

# PATCHURL+=()

# build_in_sourcedir

# sourcesubdir_append src

#mee_extract() {
# bee_extract "${@}"
#}

#mee_patch() {
# bee_patch "${@}"
#}

mee_configure() {
bee_configure --enable-thread-safe
}

#mee_build() {
# bee_build
#}

mee_build_post() {
make check
}

#mee_install() {
# bee_install
#}

#mee_install_post() {
# exit
#}
44 changes: 44 additions & 0 deletions mpfr_compat-3.1.6-0.be0
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
#!/usr/bin/env beesh

# BEE_VERSION mpfr_compat-3.1.6-0

# more info: https://foo.bar.com

SRCURL[0]="https://ftp.gnu.org/pub/gnu/mpfr/mpfr-${PKGVERSION}.tar.gz"

# PATCHURL+=()

# build_in_sourcedir

# sourcesubdir_append src

#mee_extract() {
# bee_extract "${@}"
#}

#mee_patch() {
# bee_patch "${@}"
#}

mee_configure() {
bee_configure --enable-thread-safe
}

#mee_build() {
# bee_build
#}
mee_build() {
make check
}

#mee_install() {
# bee_install
#}

mee_install_post() {
rm -rfv ${D}/usr/include
rm -rfv ${D}/usr/share
rm -rfv ${D}/usr/lib/libmpfr.so
rm -rfv ${D}/usr/lib/libmpfr.a
rm -rfv ${D}/usr/lib/libmpfr.la
}

0 comments on commit 92694db

Please sign in to comment.