Skip to content

Commit

Permalink
Conformed the change of the module name.
Browse files Browse the repository at this point in the history
  • Loading branch information
zerothi committed Jun 2, 2015
1 parent 4dedad2 commit 366ecdb
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 6 deletions.
10 changes: 7 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
fvar
fdict
====

Supplying a variable module which does not restrict the type used.
Supplying a variable and dictionary module which does not restrict the type used.


Type free variable
==================

Using this module one gains access to a generic type variable which
can contain *any* data format.
Expand Down Expand Up @@ -42,7 +46,7 @@ where it is. As with any other pointer arithmetic it is up to the programmer
to ensure no memory leaks.


dictionary
Dictionary
==========

Using the `type(var)` it becomes easy to create dictionaries in fortran.
Expand Down
7 changes: 4 additions & 3 deletions dist.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@

#!/bin/bash

_name=fdict

# bash-script to create tar file for distribution

# Get tag branch and number of commits since
Expand All @@ -9,11 +10,11 @@ describe=`git describe HEAD`
describe=${describe%-*}

# Save file name
file=fvar-$describe.tar.gz
file=$_name-$describe.tar.gz

rm -f $file
# Create the archive (with prefix)
git archive --prefix fvar-$describe/ \
git archive --prefix $_name-$describe/ \
--format tar.gz \
-o $file HEAD

Expand Down

0 comments on commit 366ecdb

Please sign in to comment.