From d9fc67e625337cd2921e9feaa2339aa882d0e08b Mon Sep 17 00:00:00 2001 From: pjotrp Date: Wed, 8 Sep 2010 12:59:49 +0200 Subject: [PATCH] Debian --- LICENSE | 2 +- README | 3 +-- configure | 5 +++++ 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/LICENSE b/LICENSE index 7494ae9..a8d892d 100755 --- a/LICENSE +++ b/LICENSE @@ -10,7 +10,7 @@ report this to the BioLib project. If a license is not specified the code contributed to BioLib defaults to the BSD license: -Copyright (c) 2008, 2009 The BioLib Project +Copyright (c) 2008, 2009, 2010 The BioLib Project All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/README b/README index c7a07dc..d22a954 100755 --- a/README +++ b/README @@ -1,6 +1,6 @@ = BIOLIB = -Biolib is an OpenBio initiative to provide shared libraries for the major Bio* +Biolib is an OBF initiative to provide shared libraries for the major Bio* languages - so as to share one code base for Perl, Ruby, Python, JAVA and R. The basic idea is to provide infrastructure that allows sharing code rather than reinventing the wheel every time between different language @@ -21,4 +21,3 @@ If you wish to contribute subscribe to the mailing list. Pjotr Prins - diff --git a/configure b/configure index 55ae4e1..3c59368 100755 --- a/configure +++ b/configure @@ -8,6 +8,7 @@ # --with-perl : build biolib for Perl (default) # --with-ruby : build biolib for Ruby # --with-python : build biolib for Python +# --with-libs : build libraries only # # In addition libraries can be specified @@ -58,6 +59,10 @@ case $language in plang="-DBUILD_PYTHON:BOOLEAN=TRUE" shift ;; + '--with-libs') + plang="-DBUILD_LIBS:BOOLEAN=TRUE" + shift + ;; *) echo "BioLib defaulting to Perl build" plang="-DBUILD_PERL:BOOLEAN=TRUE"