File: SConscript

package info (click to toggle)
jppy 0.0.47-1.1
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 7,188 kB
  • ctags: 4,558
  • sloc: ansic: 51,314; python: 5,949; yacc: 1,303; makefile: 735; sh: 555; sed: 10
file content (15 lines) | stat: -rw-r--r-- 321 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# -*- python -*- 
import os
import glob

Import('env')

localEnv = env.Clone(INSTALL_PERMS=0755)

target_path = os.path.join(env['jppyguiroot'],
                           env['prefix'][1:],
                           "bin")

localEnv.Install(target_path, ["jppy"] + glob.glob("jp_*"))
env.Alias('install', target_path)