mirror of
https://github.com/aseprite/aseprite.git
synced 2024-12-27 03:16:58 +00:00
102 lines
3.2 KiB
Bash
102 lines
3.2 KiB
Bash
#! /bin/sh
|
|
|
|
dir="`pwd`"
|
|
version=$(cat ../src/config.h | grep VERSION | sed -e 's/.*\"\(.*\)\"/\1/g')
|
|
distdir=aseprite-$version
|
|
zip="zip -9"
|
|
zip_recursive_flag="-r"
|
|
|
|
if [ ! -f create_packages.sh ]; then
|
|
echo You must run create_packages.sh from scripts/ directory
|
|
exit 1
|
|
fi
|
|
|
|
######################################################################
|
|
# Full source distribution (with 3rd party code)
|
|
|
|
if [ ! -f $distdir.zip ] ; then
|
|
cd "$dir/.."
|
|
mkdir "$dir/$distdir"
|
|
cp --parents $(git ls-files) "$dir/$distdir"
|
|
cd "$dir"
|
|
|
|
$zip $zip_recursive_flag $distdir.zip $distdir
|
|
rm -fr $distdir
|
|
fi
|
|
|
|
#####################################################################
|
|
# Minimal source distribution (without 3rd party code).
|
|
# Used to compile ASEPRITE with shared libraries.
|
|
|
|
if [ ! -f $distdir.tar.xz ] ; then
|
|
cd "$dir/.."
|
|
mkdir "$dir/$distdir"
|
|
cp --parents $(git ls-files | grep -v -e ^third_party | grep -v -e ^src/allegro | grep -v -e ^scripts) "$dir/$distdir"
|
|
cp --parents third_party/CMakeLists.txt "$dir/$distdir"
|
|
cd "$dir"
|
|
|
|
tar vcfJ $distdir.tar.xz $distdir
|
|
rm -fr $distdir
|
|
fi
|
|
|
|
######################################################################
|
|
# Files for binary distributions
|
|
|
|
function def_common_files()
|
|
{
|
|
txt_files=" \
|
|
$1/README.html \
|
|
$1/LICENSE.txt \
|
|
$1/data/convmatr.def \
|
|
$1/data/*.xml \
|
|
$1/docs/files/*.txt \
|
|
$1/docs/licenses/*.txt \
|
|
$1/data/widgets/*.xml"
|
|
|
|
bin_files=" \
|
|
$1/data/palettes/*.gpl \
|
|
$1/data/icons/ase*.ico \
|
|
$1/data/icons/ase*.png \
|
|
$1/data/skins/*/*.png \
|
|
$1/data/skins/*/*.xml \
|
|
$1/docs/*.pdf"
|
|
}
|
|
|
|
######################################################################
|
|
# Win32 Distribution
|
|
|
|
if [ ! -f $distdir-win32.zip ] ; then
|
|
|
|
cd "$dir/.."
|
|
def_common_files .
|
|
mkdir "$dir/$distdir-win32"
|
|
|
|
# Generate README.html
|
|
pandoc README.md -o README.html
|
|
|
|
# For Allegro dll / C Runtime dll
|
|
#cp -r --parents $txt_files $bin_files aseprite.exe alleg44.dll msvcr90.dll "$dir/$distdir-win32"
|
|
|
|
# For Allegro static / static C runtime dll (use /MT to compile Allegro)
|
|
cp -r --parents $txt_files $bin_files aseprite.exe "$dir/$distdir-win32"
|
|
|
|
# Remove README.html
|
|
rm README.html
|
|
|
|
cd "$dir"
|
|
def_common_files $distdir-win32
|
|
$zip -l $distdir-win32.zip $txt_files
|
|
|
|
# Dynamic version of DLLs
|
|
#$zip $distdir-win32.zip $bin_files \
|
|
# $distdir-win32/aseprite.exe \
|
|
# $distdir-win32/alleg44.dll \
|
|
# $distdir-win32/msvcr90.dll
|
|
|
|
# Static version
|
|
$zip $distdir-win32.zip $bin_files \
|
|
$distdir-win32/aseprite.exe
|
|
|
|
rm -fr $distdir-win32
|
|
fi
|