Skip to content
Snippets Groups Projects
Commit f3079644 authored by Chris Cantwell's avatar Chris Cantwell
Browse files

Merge branch 'fix/packaging' of /opt/gitlab/repositories/nektar

parents 935fa263 0df89325
No related branches found
No related tags found
No related merge requests found
distribute.sh
dist-exclude
builds/*
nektar++-*
ThirdParty
Testing
library/CPackRPM.cmake
library/Demos/StdRegions/ExtraDemos
library/Demos/MultiRegions/ExtraDemos
solvers/ImageWarpingSolver
solvers/PulseWaveSolver
solvers/VortexWaveInteraction
solvers/CompressibleFlowSolver/Tests/Perturbation*
docs/*.doc
docs/arch
docs/emacs
docs/html/code
docs/html/images
docs/html/downloads
docs/html/videos
docs/html/Templates
docs/html/*.html
docs/html/*.php
docs/html/*.css
utilities/PreProcessing/Extras
utilities/PostProcessing/Extras
#!/bin/bash
# @author Chris Cantwell
#
# This script generates Nektar++ distributions (nektar++-VERSION.tar.gz)
# The file VERSION contains the version number of the generated release.
#
# @requires rsync doxygen tar
BASE=`dirname $0`
cd $BASE
TARGET=nektar++-`cat VERSION`
# Make Code tree target
if [ -d $TARGET ]; then
rm -rf $TARGET
fi
mkdir -p $TARGET
# Create code tree
echo "Generating code tree..."
rsync -avqH --cvs-exclude --exclude-from dist-exclude * $TARGET
# Package code tree
echo "Packaging code distribution..."
tar -zc -f $TARGET.tar.gz $TARGET
# Clean up
rm -rf $TARGET
File deleted
This diff is collapsed.
This diff is collapsed.
......@@ -328,8 +328,10 @@ set(CPACK_SOURCE_IGNORE_FILES
"/distribute\\\\.sh"
"/dist-exclude"
"/Testing/"
"/library/Demos/MultiRegions/ExtraDemos/"
"/library/Demos/MultiRegions/XmlFiles/"
"/library/Demos/LocalRegions/XmlFiles/"
"/solvers/ImageWarpingSolver/"
"/solvers/PulseWaveSolver/"
"/solvers/VortexWaveInteraction/"
"/utilities/PreProcessing/Extras/"
"/utilities/PostProcessing/Extras/"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment