Home | History | Annotate | Download | only in BuildScript

Lines Matching refs:workDir

106 WORKDIR = "/tmp/_py"
110 DEPSRC = os.path.join(WORKDIR, 'third-party')
180 --build-dir=DIR: Create build here (default: %(WORKDIR)r)
272 "DESTDIR": shellQuote(os.path.join(WORKDIR, 'libraries')),
292 "DESTDIR": shellQuote(os.path.join(WORKDIR, 'libraries')),
341 shellQuote(os.path.join(WORKDIR, 'libraries')),
342 shellQuote(os.path.join(WORKDIR, 'libraries')),
375 shellQuote(os.path.join(WORKDIR, 'libraries')),
387 shellQuote(os.path.join(WORKDIR, 'libraries')),
675 global WORKDIR, DEPSRC, SDKPATH, SRCDIR, DEPTARGET
701 WORKDIR=v
731 WORKDIR=os.path.abspath(WORKDIR)
741 print(" * Build directory: %s" % WORKDIR)
993 buildDir=os.path.join(WORKDIR, '_bld')
997 workDir = extractArchive(buildDir, sourceArchive)
998 os.chdir(workDir)
1094 Build our dependencies into $WORKDIR/libraries/usr/local
1099 universal = os.path.join(WORKDIR, 'libraries')
1113 rootDir = os.path.join(WORKDIR, '_root')
1131 buildDir = os.path.join(WORKDIR, '_bld', 'python')
1132 rootDir = os.path.join(WORKDIR, '_root')
1155 os.environ['DYLD_LIBRARY_PATH'] = os.path.join(WORKDIR,
1168 shellQuote(WORKDIR)[1:-1],
1169 shellQuote(WORKDIR)[1:-1]))
1187 if os.path.exists(os.path.join(WORKDIR, 'libraries', 'Library')):
1190 WORKDIR, 'libraries', 'Library', 'Frameworks',
1193 shellQuote(os.path.join(WORKDIR, '_root', 'Library', 'Frameworks',
1260 include_path = '-I%s/libraries/usr/local/include' % (WORKDIR,)
1261 lib_path = '-L%s/libraries/usr/local/lib' % (WORKDIR,)
1389 srcdir = os.path.join(WORKDIR, '_root', srcdir[1:])
1485 for dirpath, _, filenames in os.walk(os.path.join(WORKDIR, '_root')):
1490 outdir = os.path.join(WORKDIR, 'installer')
1530 shellQuote(os.path.join(WORKDIR, '_root'))))
1539 outdir = os.path.join(WORKDIR, 'diskimage')
1553 shellQuote(os.path.join(WORKDIR, 'installer')),
1557 if not os.path.exists(os.path.join(WORKDIR, "mnt")):
1558 os.mkdir(os.path.join(WORKDIR, "mnt"))
1560 shellQuote(imagepath + ".tmp.dmg"), shellQuote(os.path.join(WORKDIR, "mnt"))))
1564 os.path.join(WORKDIR, "mnt", volname, ".VolumeIcon.icns"))
1566 shellQuote(os.path.join(WORKDIR, "mnt", volname)),))
1568 runCommand("hdiutil detach %s"%(shellQuote(os.path.join(WORKDIR, "mnt", volname))))
1608 if os.path.exists(WORKDIR):
1609 shutil.rmtree(WORKDIR)
1610 os.mkdir(WORKDIR)
1631 folder = os.path.join(WORKDIR, "_root", "Applications", "Python %s"%(
1647 os.path.join(WORKDIR, 'installer', 'ReadMe.rtf'))
1651 os.path.join(WORKDIR, 'installer', 'License.rtf'))
1653 fp = open(os.path.join(WORKDIR, 'installer', 'Build.txt'), 'w')