pandoc/linux/make_tarball.sh

16 lines
440 B
Bash
Raw Normal View History

set -e
VERSION=$(grep -e '^Version' pandoc.cabal | awk '{print $2}')
TARGET=pandoc-$VERSION
cd /artifacts
mkdir $TARGET
mkdir $TARGET/bin $TARGET/man $TARGET/man/man1
./pandoc-citeproc --man > $TARGET/man/man1/pandoc-citeproc.1
cp /usr/src/pandoc/man/pandoc.1 $TARGET/man/man1
mv pandoc pandoc-citeproc $TARGET/bin
gzip -9 $TARGET/man/man1/pandoc.1
gzip -9 $TARGET/man/man1/pandoc-citeproc.1
tar cvzf $TARGET.tar.gz $TARGET
rm -r $TARGET