diff options
author | Don Bright <hugh.m.bright@gmail.com> | 2013-10-02 22:27:42 (GMT) |
---|---|---|
committer | Don Bright <hugh.m.bright@gmail.com> | 2013-10-02 22:27:42 (GMT) |
commit | 7804a398a3421e16617168f33bfd6583180ba3ea (patch) | |
tree | beb7a92246ec7481f0a2282178fcbc0562a3aa1f /scripts | |
parent | c78c0e88758fe4505a65abaa6cafc1ef36733e91 (diff) | |
parent | 94070f7b51e54f64d977be90339c77521705b444 (diff) |
Merge branch 'master' of github.com:openscad/openscad into issue480
Conflicts:
src/openscad.cc
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/installer-linux.sh | 3 | ||||
-rwxr-xr-x | scripts/release-common.sh | 2 |
2 files changed, 5 insertions, 0 deletions
diff --git a/scripts/installer-linux.sh b/scripts/installer-linux.sh index 8b3fc6d..c3b712b 100755 --- a/scripts/installer-linux.sh +++ b/scripts/installer-linux.sh @@ -42,4 +42,7 @@ cp -rv examples/. "$prefix"/share/openscad/examples/ echo "Copying libraries..." cp -rv libraries/. "$prefix"/share/openscad/libraries/ +echo "Copying support files..." +cp -rv share/. "$prefix"/share/ + echo "Installation finished. Have a nice day." diff --git a/scripts/release-common.sh b/scripts/release-common.sh index 8a1ed7c..e91c79f 100755 --- a/scripts/release-common.sh +++ b/scripts/release-common.sh @@ -332,6 +332,8 @@ case $OS in -e '/lib(icu.*|stdc.*|audio|CGAL|GLEW|opencsg|png|gmp|gmpxx|mpfr)\.so/ { p; d; };' \ -e 'd;' | xargs cp -vt openscad-$VERSION/lib/openscad/ strip openscad-$VERSION/lib/openscad/* + mkdir -p openscad-$VERSION/share/appdata + cp openscad.appdata.xml openscad-$VERSION/share/appdata cp scripts/installer-linux.sh openscad-$VERSION/install.sh chmod 755 -R openscad-$VERSION/ PACKAGEFILE=openscad-$VERSION.x86-$ARCH.tar.gz |