packaging

This commit is contained in:
Thomas Levine 2016-04-01 18:19:28 +00:00
parent 3ebe974202
commit 7a34da0906
1 changed files with 9 additions and 0 deletions

9
packages/nongnu.sh Normal file
View File

@ -0,0 +1,9 @@
#!/bin/sh
tmp=$(mktemp -d)
mkdir $tmp/urchin
cp ../urchin ../readme.md ../AUTHORS ../COPYING $tmp/urchin
cd $tmp
tar czf urchin.tar.gz urchin
cd -
mv $tmp/urchin.tar.gz .
rm -R $tmp