convmlv/mkrelease.sh

29 lines
1.0 KiB
Bash
Raw Normal View History

#!/bin/bash
2016-11-30 02:51:59 +01:00
VERSION=$(echo "$(./convmlv.sh -v)" | sed -e 's/\./\_/g')
#HOW TO USE (Linux and Mac):
# 1. Update version above.
# 2. Put mlv2badpixels.sh, mlv_dump, raw2dng, and cr2hdr into a "binaries" folder in the repository.
# 3. Run this script, with one argument representing the path to the binaries.
# 4. A release tarball will automatically be created in "release" in the repository.
## It's reccommended that BINPATH is a folder in REP_PATH.
REP_PATH="$(pwd)"
BINPATH="${REP_PATH}/binaries"
RELEASE="${REP_PATH}/release"
mkdir -p "$RELEASE"
if [[ $OSTYPE == "linux-gnu" ]]; then
PLATFORM="linux"
elif [[ $OSTYPE == "darwin11" ]]; then
PLATFORM="mac"
else
echo "Platform not yet supported! Contact me at contact@sofusrose.com."
fi
cd "$BINPATH"
2016-11-30 06:40:52 +01:00
tar -czvf $RELEASE/convmlv-${VERSION}-${PLATFORM}.tar.gz ../balance.py mlv2badpixels.sh mlv_dump raw2dng cr2hdr ../sRange.py ../CHANGELOG ../licence ../convmlv.sh ../color-core/ ../color-ext ../DEPENDENCIES ../docs/MANPAGE ../docs/docs.pdf ../docs/workflow.txt ../configs/*