diff options
author | Pierre Ossman <ossman@cendio.se> | 2019-01-18 16:46:30 +0100 |
---|---|---|
committer | Pierre Ossman <ossman@cendio.se> | 2019-01-21 16:34:33 +0100 |
commit | 376f2dda782bc59febc9af32336e7c6ebbf5c749 (patch) | |
tree | 52d5be22195ff7f194e0a32d2b6b4061a6ad49f2 /contrib/packages/deb/ubuntu-trusty/debian/get-orig-source.sh | |
parent | 9d5522845767b64bc7d207adeafdee3f9e5e9799 (diff) | |
download | tigervnc-376f2dda782bc59febc9af32336e7c6ebbf5c749.tar.gz tigervnc-376f2dda782bc59febc9af32336e7c6ebbf5c749.zip |
Clean up Ubuntu 14.04 FLTK build
The supporting scripts weren't really up to date, so remove them
and just require the packager to include FLTK in the source
tarball.
Diffstat (limited to 'contrib/packages/deb/ubuntu-trusty/debian/get-orig-source.sh')
-rwxr-xr-x | contrib/packages/deb/ubuntu-trusty/debian/get-orig-source.sh | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/contrib/packages/deb/ubuntu-trusty/debian/get-orig-source.sh b/contrib/packages/deb/ubuntu-trusty/debian/get-orig-source.sh deleted file mode 100755 index d79a7242..00000000 --- a/contrib/packages/deb/ubuntu-trusty/debian/get-orig-source.sh +++ /dev/null @@ -1,24 +0,0 @@ -#!/bin/bash - -#curl -L -o tigervnc-1.3.0.tar.bz2 "http://downloads.sourceforge.net/project/tigervnc/tigervnc/1.3.0/tigervnc-1.3.0.tar.bz2" -#tar xjf tigervnc-*.tar.bz2 -#rm tigervnc-*.tar.bz2 -curl -OL http://sourceforge.net/code-snapshots/svn/t/ti/tigervnc/code/tigervnc-code-5136-trunk.zip -unzip tigervnc-code-*-trunk.zip -mv tigervnc-code-*-trunk tigervnc-1.3.80 -rm tigervnc-code-*-trunk.zip -pushd tigervnc-* -curl -L -o fltk-1.3.2-source.tar.gz 'http://anonscm.debian.org/gitweb/?p=users/ucko/fltk1.3.git;a=snapshot;h=HEAD;sf=tgz' -tar xzf fltk-*-source.tar.gz -rm fltk-*-source.tar.gz -mv fltk1.3-* fltk-1.3.2 -pushd fltk-* -sh ../../debian/patch_fltk.sh -find . -name "*.orig" -exec rm {} \; -popd -popd -if [ -e tigervnc_1.3.80.orig.tar.gz ] ; then - rm tigervnc_1.3.80.orig.tar.gz -fi -tar czf tigervnc_1.3.80.orig.tar.gz tigervnc-1.3.80 -rm -rf tigervnc-1.3.80 |