mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-21 19:42:24 +01:00
15b7a9ab86
Signed-off-by: Niels Horn <niels.horn@slackbuilds.org>
26 lines
1.1 KiB
Diff
26 lines
1.1 KiB
Diff
diff -Naur a/Sconstruct b/Sconstruct
|
|
--- a/Sconstruct 2011-03-15 12:22:35.000000000 +0000
|
|
+++ b/Sconstruct 2011-10-28 03:17:21.000000000 +0100
|
|
@@ -214,12 +214,7 @@
|
|
for file in files:
|
|
if file.endswith(".png"):
|
|
|
|
- if env['prefix'].endswith("/"):
|
|
- dname = dir[2:]
|
|
- else:
|
|
- dname = dir[1:]
|
|
-
|
|
- env.Alias(target="install", source=env.Install(dir= env['DESTDIR'] + env['prefix'] + '/share/hydrogen/' + dname, source= dir + "/" + file))
|
|
+ env.Alias(target="install", source=env.Install(dir= env['DESTDIR'] + env['prefix'] + '/share/hydrogen/img/gray' + file))
|
|
|
|
def get_hydrogen_gui( lib_hydrogen , opts ):
|
|
includes, cppflags, ldflags = get_platform_flags( opts )
|
|
@@ -301,7 +296,7 @@
|
|
env.Alias(target="install", source=env.Install(dir= env['DESTDIR'] + env['prefix'] + '/share/hydrogen/data', source="./data/img"))
|
|
|
|
#add every img in ./data/img to the install list.
|
|
- os.path.walk("./data/img/",install_images,env)
|
|
+ os.path.walk("./data/img/gray",install_images,env)
|
|
|
|
|
|
env.Alias(target="install", source=env.Install(dir= env['DESTDIR'] + env['prefix'] + '/share/hydrogen/data', source="./data/drumkits"))
|