Skip to content
This repository has been archived by the owner on Jan 30, 2023. It is now read-only.

Commit

Permalink
trac #17552: Initial attempt at creating a SPKG for bliss
Browse files Browse the repository at this point in the history
  • Loading branch information
azooo authored and nathanncohen committed Dec 27, 2014
1 parent 5bf6712 commit 343b145
Show file tree
Hide file tree
Showing 4 changed files with 49 additions and 0 deletions.
28 changes: 28 additions & 0 deletions build/pkgs/bliss/SPKG.txt
@@ -0,0 +1,28 @@
= bliss 0.72 =

== Description ==

bliss is an open source tool for computing automorphism groups and canonical forms of graphs.

== License ==

GPL

== SPKG Maintainers ==

Jernej Azarija (jernej.azarija@gmail.com)
Nathann Cohen (nathann.cohen@gmail.com)

== Upstream Contact ==

Bliss is currently being maintained by Tommi Junttila and Petteri Kaski.
www.tcs.tkk.fi/Software/bliss/index.html

== Dependencies ==

None

== Changelog ==

=== bliss-1.0 (Jernej Azarija, Nathann Cohen, 26 December 2014) ==
* Initial version
4 changes: 4 additions & 0 deletions build/pkgs/bliss/checksums.ini
@@ -0,0 +1,4 @@
tarball=bliss-VERSION.tar.bz2
sha1=5b2a59b30d604f9f8a8b1b95c564b6b92ee89916
md5=773829afa090d0221b5fbb02fbc9eaa9
cksum=601642863
1 change: 1 addition & 0 deletions build/pkgs/bliss/package-version.txt
@@ -0,0 +1 @@
0.72
16 changes: 16 additions & 0 deletions build/pkgs/bliss/spkg-install
@@ -0,0 +1,16 @@
#!/usr/bin/env bash

if [ "$SAGE_LOCAL" = "" ]; then
echo "SAGE_LOCAL undefined ... exiting";
echo "Maybe run 'sage -sh'?"
exit 1
fi

cd src
make
mv libbliss.a $SAGE_LOCAL/lib

if [ $? -ne 0 ]; then
echo "An error occurred whilst building bliss"
exit 1
fi

0 comments on commit 343b145

Please sign in to comment.