summaryrefslogtreecommitdiffstats
path: root/cluster/fann
diff options
context:
space:
mode:
authorDavid Brown2006-10-11 18:39:08 -0700
committerDavid Brown2006-10-11 18:39:08 -0700
commitce981bb7753c93e1c11a6c643a65892f972178ea (patch)
tree227d63d5951b43c38ce75bf0871f8f3c01c05d68 /cluster/fann
parent6f898b86657826b2fce40de58d1ba553caad7297 (diff)
fann better update of fann to include python bindings
Diffstat (limited to 'cluster/fann')
-rwxr-xr-xcluster/fann/BUILD7
-rwxr-xr-xcluster/fann/DEPENDS1
-rwxr-xr-xcluster/fann/DETAILS2
-rw-r--r--cluster/fann/HISTORY5
-rwxr-xr-xcluster/fann/INSTALL7
5 files changed, 20 insertions, 2 deletions
diff --git a/cluster/fann/BUILD b/cluster/fann/BUILD
new file mode 100755
index 0000000000..8fe0357854
--- /dev/null
+++ b/cluster/fann/BUILD
@@ -0,0 +1,7 @@
+default_build &&
+if is_depends_enabled $SPELL python
+then
+ cd python &&
+ python setup.py build &&
+ cd ../
+fi
diff --git a/cluster/fann/DEPENDS b/cluster/fann/DEPENDS
new file mode 100755
index 0000000000..ed3244a7d8
--- /dev/null
+++ b/cluster/fann/DEPENDS
@@ -0,0 +1 @@
+optional_depends python "" "" "for python bindings"
diff --git a/cluster/fann/DETAILS b/cluster/fann/DETAILS
index 17d10e2dda..83f37322f0 100755
--- a/cluster/fann/DETAILS
+++ b/cluster/fann/DETAILS
@@ -3,7 +3,7 @@
SOURCE=$SPELL-$VERSION.tar.gz
SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-$VERSION
SOURCE_URL[0]=$SOURCEFORGE_URL/$SPELL/$SOURCE
- SOURCE_HASH=sha512:a87bbc6a3c86654356f75a2c79ee1fe7a9bfbe4ea1d79ed0e33af120dfcd93e366bbb0c38f1b5a4d299b43099a223dd8e7848f6455aa57a053286f3a3c346bae
+ SOURCE_HASH=sha512:6bd72a73ad68ebf1e82dbf158aab606a04f28bc90bc6a5b5e9a5a3e45943acf2ba9763dfb8b3f39da2e3a91a384dc2b4918b74a86f16bb11d8613bef85b1cd4e
WEB_SITE=http://leenissen.dk/fann/
ENTERED=20050706
LICENSE[0]=LGPL
diff --git a/cluster/fann/HISTORY b/cluster/fann/HISTORY
index 4c3fbae573..df3b44055b 100644
--- a/cluster/fann/HISTORY
+++ b/cluster/fann/HISTORY
@@ -1,5 +1,8 @@
2006-10-11 David Brown <dmlb2000@gmail.com>
- * DETAILS: updated 2.0.0
+ * DETAILS: updated 2.0.0 and sha512sum
+ * DEPENDS: added for python bindings
+ * BUILD: added to build python bindings
+ * INSTALL: added to install python bindings
2006-10-03 Juuso Alasuutari <iuso@sourcemage.org>
* DETAILS: [automated] Removed UPDATED.
diff --git a/cluster/fann/INSTALL b/cluster/fann/INSTALL
new file mode 100755
index 0000000000..633bb71cd9
--- /dev/null
+++ b/cluster/fann/INSTALL
@@ -0,0 +1,7 @@
+default_install &&
+if is_depends_enabled $SPELL python
+then
+ cd python &&
+ python setup.py install &&
+ cd ../
+fi