summaryrefslogtreecommitdiffstats
path: root/unpack_local_scons.sh
diff options
context:
space:
mode:
authorgregory guy <gregory-tde@laposte.net>2021-03-03 21:42:42 +0100
committergregory guy <gregory-tde@laposte.net>2021-03-04 15:33:33 +0100
commit48deaabecefea835f81c9e6e8ba73ee8881c314c (patch)
tree308142fdae63e149d93c3fd5ab37d8debe6b8919 /unpack_local_scons.sh
parentac5847e869954149361463d62e68d6081c97dad5 (diff)
downloadkstreamripper-48deaabecefea835f81c9e6e8ba73ee8881c314c.tar.gz
kstreamripper-48deaabecefea835f81c9e6e8ba73ee8881c314c.zip
Drop scons build support.
Deleted empty file ChangeLog. Update some cmake files with latest macros. Add basic cmake build instructions. Few cosmetics. Signed-off-by: gregory guy <gregory-tde@laposte.net>
Diffstat (limited to 'unpack_local_scons.sh')
-rwxr-xr-xunpack_local_scons.sh61
1 files changed, 0 insertions, 61 deletions
diff --git a/unpack_local_scons.sh b/unpack_local_scons.sh
deleted file mode 100755
index a1266fc..0000000
--- a/unpack_local_scons.sh
+++ /dev/null
@@ -1,61 +0,0 @@
-#!/bin/sh
-
-BOLD="\033[1m"
-RED="\033[91m"
-GREEN="\033[92m"
-YELLOW="\033[93m"
-CYAN="\033[96m"
-NORMAL="\033[0m"
-
-#bunzip2 scons-mini.tar.bz2
-#tar xvf scons-mini.tar
-
-# if kde is there a recent tar should be too
-tar xjvf scons-mini.tar.bz2
-
-cat > Makefile << EOF
-## Makefile automatically generated by unpack_local_scons.sh
-
-### To use scons when installed globally use
-#SCONS=scons
-### To run the local version instead, define
-SCONS=./scons
-
-# scons : compile
-# scons -c : clean
-# scons install : install
-# scons -c install : uninstall and clean
-
-# default target : use scons to build the programs
-all:
- \$(SCONS) -Q
-
-### There are several possibilities to help debugging :
-# scons --debug=explain, scons --debug=tree ..
-#
-### To optimize the runtime, use
-# scons --max-drift=1 --implicit-deps-unchanged
-debug:
- \$(SCONS) -Q --debug=tree
-
-clean:
- \$(SCONS) -c
-
-install:
- \$(SCONS) install
-
-uninstall:
- \$(SCONS) -c install
-
-## this target creates a tarball of the project
-dist:
- \$(SCONS) dist
-EOF
-
-
-echo ""
-echo -e $GREEN"A minimum scons distribution has been unpacked right here"
-echo -e $GREEN"you can now run : "$NORMAL
-echo -e $BOLD"./scons"$NORMAL
-echo -e $BOLD"./scons install$NORMAL (as root probably)"
-