Skip to content

mpc: be0 conversion and update SRCURL #1316

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
23 changes: 0 additions & 23 deletions mpc-0.8.2-0.bee

This file was deleted.

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

# BEE_VERSION mpc-0.8.2-1

SRCURL[0]="http://repository.timesys.com/buildsources/m/mpc/mpc-${PKGVERSION}/mpc-${PKGVERSION}.tar.gz"
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I personally would like to see a more... robust URL

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Current download: https://ftp.gnu.org/gnu/mpc/mpc-1.1.0.tar.gz which installs libmpc.so.3 so we should try a new package with 1.1.0 and a compat lib with libmpc.so.2.


# PATCHURL+=()

# build_in_sourcedir

# sourcesubdir_append src

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

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

#mee_configure() {
# bee_configure
#}

mee_build() {
bee_build
make check 2>&1 | tee check.log
}

mee_install() {
bee_install
echo grep "tests passed" ${B}/check.log
}