diff --git a/igraph-0.6.4-0.bee b/igraph.be0 similarity index 76% rename from igraph-0.6.4-0.bee rename to igraph.be0 index b7318b68a..3be7fb28e 100755 --- a/igraph-0.6.4-0.bee +++ b/igraph.be0 @@ -1,5 +1,7 @@ #!/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.) @@ -7,7 +9,9 @@ ## 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. @@ -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 @@ -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 ############################################################################### @@ -51,9 +49,9 @@ build_in_sourcedir # bee_patch "${@}" #} -#mee_configure() { -# bee_configure -#} +mee_configure() { + bee_configure --enable-shared=no +} #mee_build() { # bee_build @@ -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. ##