diff options
author | gregory guy <gregory-tde@laposte.net> | 2021-04-26 18:17:21 +0200 |
---|---|---|
committer | gregory guy <gregory-tde@laposte.net> | 2021-05-20 20:05:15 +0200 |
commit | 66605c73afda749d19dac310d41f7a7241d6d00b (patch) | |
tree | b0fbfdfebb9f1784b8793179106140bf6ffd4544 /asciiquarium/SConstruct | |
parent | c628a69164ef30ff21d700967b37b0da13a2ca61 (diff) | |
download | tdeartwork-66605c73afda749d19dac310d41f7a7241d6d00b.tar.gz tdeartwork-66605c73afda749d19dac310d41f7a7241d6d00b.zip |
Import original source code KDE3 Asciiquarium-0.3.2 from https://store.kde.org/p/1124051.
KDE Asciiquarium is a screensaver based off Kirk Baucom's asciiquarium program (http://www.robobunny.com/projects/asciiquarium/).
Code is GPL licensed, https://robobunny.com/projects/asciiquarium/gpl.txt
Signed-off-by: gregory guy <gregory-tde@laposte.net>
Diffstat (limited to 'asciiquarium/SConstruct')
-rw-r--r-- | asciiquarium/SConstruct | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/asciiquarium/SConstruct b/asciiquarium/SConstruct new file mode 100644 index 00000000..61fe6e9e --- /dev/null +++ b/asciiquarium/SConstruct @@ -0,0 +1,32 @@ +#! /usr/bin/env python + +################################################################### +# LOAD THE ENVIRONMENT AND SET UP THE TOOLS +################################################################### + +## Load the builders in config +tools = [ 'default', 'generic', 'kde' ] +toolpath = [ './', './admin' ] + +# Required as part of SCons +env = Environment(tools = tools, toolpath = toolpath) + +# Pull in some default settings. +env.KDEuse("environ rpath nohelp") +#env.KDEuse("environ rpath lang_qt thread nohelp") + +# Export the environment so that SConscript files in subdirs can access it. +Export('env') + +################################################################### +# SCRIPTS FOR BUILDING THE TARGETS +################################################################### + +distClean = env.Action("find %s -name '*.pyc' -exec rm {} \\;" % env.GetLaunchDir()) +dist = env.Alias('dist', action = distClean) + +env.Alias(dist, action = Delete("%s/cache" % env.GetLaunchDir())) +env.Clean(dist, ['cache']) +env.AlwaysBuild(dist) + +env.subdirs('src') |