-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathglyphify-scm-1.rockspec
43 lines (39 loc) · 1.16 KB
/
glyphify-scm-1.rockspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
package = 'glyphify'
version = 'scm-1'
description = {
summary = "Redraw an image using glyphs.",
detailed = [[
A Torch-based command-line image filter. May be used to give a usual
photo or picture a "matrix-kind" style, with a free choice on what
characters (glyphs) to use.
]],
license = 'MIT',
homepage = 'https://github.com/wrwrwr/glyphify',
maintainer = 'lua@wr.waw.pl'
}
dependencies = {
'lua >= 5.1',
'penlight >= 1.3',
'torch >= 7'
}
source = {
url = 'git://github.com/wrwrwr/glyphify.git'
}
build = {
type = 'builtin',
modules = {
['glyphify.extractors.marr'] = 'glyphify/extractors/marr.lua',
['glyphify.fitters.base'] = 'glyphify/fitters/base.lua',
['glyphify.fitters.brute'] = 'glyphify/fitters/brute.lua',
['glyphify.fitters.mc'] = 'glyphify/fitters/mc.lua',
['glyphify.lapp_color'] = 'glyphify/lapp_color.lua',
['glyphify.torchx'] = 'glyphify/torchx.lua'
},
install = {
bin = {
extract_glyphs = 'extract_glyphs.py',
glyphify = 'glyphify.lua'
}
},
copy_directories = {'examples', 'glyphs'}
}