Skip to content

Commit

Permalink
Add a dir for contrib testing
Browse files Browse the repository at this point in the history
  • Loading branch information
josephwright committed Dec 5, 2019
1 parent 305f3f0 commit bc6f51c
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions contrib/build.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
#!/usr/bin/env texlua

-- Build script for contrib packages

-- Identify the bundle and module
-- Just filler as this is purely a location for tests
module = "contrib"
bundle = ""

-- Location of main directory: use Unix-style path separators
maindir = ".."

-- Non-standard settings
checkdeps =
{
maindir .. "/base",
maindir .. "/required/amsmath",
maindir .. "/required/graphics",
maindir .. "/required/tools"
}
checksearch = true

-- Load the common build code
dofile(maindir .. "/build-config.lua")

-- Find and run the build system
kpse.set_program_name("kpsewhich")
if not release_date then
dofile(kpse.lookup("l3build.lua"))
end

0 comments on commit bc6f51c

Please sign in to comment.