Skip to content

Update igraph from 0.6.4 to 0.7.1 #1146

Merged
merged 4 commits into from
Jun 27, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 13 additions & 15 deletions igraph-0.6.4-0.bee → igraph.be0
Original file line number Diff line number Diff line change
@@ -1,13 +1,17 @@
#!/usr/bin/env beesh

# BEE_VERSION igraph-0.7.1-0

## this file was created by bee init and should be executed to build a
## bee-package. (Additional hints are located at the end of this file.)

###############################################################################
## The source URL(s) define the location of the sources that will be
## downloaded. Version variables may be used to simplify reuse of this bee-file.

SRCURL[0]="http://downloads.sourceforge.net/project/igraph/C%20library/${PKGVERSION}/igraph-${PKGVERSION}.tar.gz"
SRCURL[0]="https://github.com/igraph/igraph/releases/download/${PKGVERSION}/igraph-${PKGVERSION}.tar.gz"

export CFLAGS='-fPIC -O2'

###############################################################################
## Add URLs/pathes to patch files to the PATCHURL array.
Expand All @@ -16,14 +20,8 @@ SRCURL[0]="http://downloads.sourceforge.net/project/igraph/C%20library/${PKGVERS
# PATCHURL+=()

###############################################################################
## Add filename patterns to the EXCLUDE array of files that should not
## be added to you package but may be present in the image directory.

# EXCLUDE+=()

###############################################################################
## Uncomment the next statement, if the software may not be able to be build
## outside the source directory and need to be build inside the source
## Uncomment the next statement, if the software may not be able to be built
## outside the source directory and needs to be built inside the source
## directory.

build_in_sourcedir
Expand All @@ -32,9 +30,9 @@ build_in_sourcedir
## bee cannot detect buildtypes specified in subdirectories.
## Sometimes packages "hide" the real sources in a subdirectory named
## 'src' or 'cmake' or ..
## use 'add_sourcesubdir' to specify this directory if known.
## use 'sourcesubdir_append' to specify this directory if known.

# add_sourcesubdir src
# sourcesubdir_append src


###############################################################################
Expand All @@ -51,9 +49,9 @@ build_in_sourcedir
# bee_patch "${@}"
#}

#mee_configure() {
# bee_configure
#}
mee_configure() {
bee_configure --enable-shared=no
}

#mee_build() {
# bee_build
Expand All @@ -71,7 +69,7 @@ build_in_sourcedir
## The name of this bee-file should follow the following naming convention:
## pkgname-pkgversion-pkgrevision.bee
##
## You may remove all comments as long as SRCURL[0]="" is set.
## You may remove all comments as long as SRCURL[0] is set.
##
## Everything in this file will be executed in a bash environment.
##
Expand Down