Home | History | Annotate | Download | only in BuildScript

Lines Matching refs:WORKDIR

107 WORKDIR = "/tmp/_py"
111 DEPSRC = os.path.join(WORKDIR, 'third-party')
181 --build-dir=DIR: Create build here (default: %(WORKDIR)r)
243 "DESTDIR": shellQuote(os.path.join(WORKDIR, 'libraries')),
263 "DESTDIR": shellQuote(os.path.join(WORKDIR, 'libraries')),
312 shellQuote(os.path.join(WORKDIR, 'libraries')),
313 shellQuote(os.path.join(WORKDIR, 'libraries')),
347 shellQuote(os.path.join(WORKDIR, 'libraries')),
359 shellQuote(os.path.join(WORKDIR, 'libraries')),
647 global WORKDIR, DEPSRC, SDKPATH, SRCDIR, DEPTARGET
674 WORKDIR=v
704 WORKDIR=os.path.abspath(WORKDIR)
715 print(" * Build directory: %s" % WORKDIR)
967 buildDir=os.path.join(WORKDIR, '_bld')
971 workDir = extractArchive(buildDir, sourceArchive)
972 os.chdir(workDir)
1068 Build our dependencies into $WORKDIR/libraries/usr/local
1073 universal = os.path.join(WORKDIR, 'libraries')
1087 rootDir = os.path.join(WORKDIR, '_root')
1105 buildDir = os.path.join(WORKDIR, '_bld', 'python')
1106 rootDir = os.path.join(WORKDIR, '_root')
1129 os.environ['DYLD_LIBRARY_PATH'] = os.path.join(WORKDIR,
1142 shellQuote(WORKDIR)[1:-1],
1143 shellQuote(WORKDIR)[1:-1]))
1162 if os.path.exists(os.path.join(WORKDIR, 'libraries', 'Library')):
1165 WORKDIR, 'libraries', 'Library', 'Frameworks',
1168 shellQuote(os.path.join(WORKDIR, '_root', 'Library', 'Frameworks',
1239 include_path = '-I%s/libraries/usr/local/include' % (WORKDIR,)
1240 lib_path = '-L%s/libraries/usr/local/lib' % (WORKDIR,)
1371 srcdir = os.path.join(WORKDIR, '_root', srcdir[1:])
1467 for dirpath, _, filenames in os.walk(os.path.join(WORKDIR, '_root')):
1472 outdir = os.path.join(WORKDIR, 'installer')
1512 shellQuote(os.path.join(WORKDIR, '_root'))))
1521 outdir = os.path.join(WORKDIR, 'diskimage')
1535 shellQuote(os.path.join(WORKDIR, 'installer')),
1539 if not os.path.exists(os.path.join(WORKDIR, "mnt")):
1540 os.mkdir(os.path.join(WORKDIR, "mnt"))
1542 shellQuote(imagepath + ".tmp.dmg"), shellQuote(os.path.join(WORKDIR, "mnt"))))
1546 os.path.join(WORKDIR, "mnt", volname, ".VolumeIcon.icns"))
1548 shellQuote(os.path.join(WORKDIR, "mnt", volname)),))
1550 runCommand("hdiutil detach %s"%(shellQuote(os.path.join(WORKDIR, "mnt", volname))))
1590 if os.path.exists(WORKDIR):
1591 shutil.rmtree(WORKDIR)
1592 os.mkdir(WORKDIR)
1613 folder = os.path.join(WORKDIR, "_root", "Applications", "Python %s"%(
1631 os.path.join(WORKDIR, 'installer', 'ReadMe.rtf'))
1635 os.path.join(WORKDIR, 'installer', 'License.rtf'))
1637 fp = open(os.path.join(WORKDIR, 'installer', 'Build.txt'), 'w')