-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
49 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
rockspec_format = "1.0" | ||
package = "fontproof" | ||
version = "2.0.8-1" | ||
|
||
source = { | ||
url = "git+https://github.com/sile-typesetter/fontproof.git", | ||
dir = "fontproof", | ||
tag = "v2.0.8" | ||
} | ||
|
||
description = { | ||
summary = "A font design testing class for SILE", | ||
detailed = [[FontProof enables you to produce PDF font test documents without | ||
fiddling with InDesign or other manual page layout or word | ||
processing programs. You can apply one of the predesigned test | ||
documents (to be added later) or use FontProof to build your own | ||
custom font test document.]], | ||
license = "MIT", | ||
homepage = "https://github.com/sile-typesetter/fontproof", | ||
} | ||
|
||
dependencies = { | ||
"lua >= 5.1", | ||
"lua_cliargs == 3.0-2" | ||
} | ||
|
||
build = { | ||
type = "builtin", | ||
modules = { | ||
["sile.classes.fontproof"] = "classes/fontproof/init.lua", | ||
["sile.packages.fontproof"] = "packages/fontproof/init.lua", | ||
["sile.packages.fontproof.groups"] = "packages/fontproof/groups.lua", | ||
["sile.packages.fontproof.gutenberg"] = "packages/fontproof/gutenberg.lua", | ||
["sile.packages.fontproof.texts"] = "packages/fontproof/texts.lua", | ||
["sile.packages.fontproof.templates.locator"] = "templates/locator.lua" | ||
}, | ||
install = { | ||
lua = { | ||
["sile.packages.fontproof.templates.full"] = "templates/full.sil", | ||
["sile.packages.fontproof.templates.gutenberg"] = "templates/gutenberg.sil", | ||
["sile.packages.fontproof.templates.test"] = "templates/test.sil", | ||
["sile.packages.fontproof.templates.unichar"] = "templates/unichar.sil" | ||
}, | ||
bin = { | ||
fontproof = "src/fontproof.lua" | ||
} | ||
} | ||
} |