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
|
package = "inotify"
version = "0.4-1"
source = {
url = 'https://github.com/hoelzro/linotify/archive/0.4.tar.gz',
dir = 'linotify-0.4',
}
description = {
summary = "Inotify bindings for Lua",
homepage = "http://hoelz.ro/projects/linotify",
license = "MIT"
}
dependencies = {
"lua >= 5.1"
}
external_dependencies = {
INOTIFY = {
header = "sys/inotify.h"
}
}
build = {
type = "builtin",
modules = {
inotify = {
sources = {"linotify.c"},
incdirs = {"$(INOTIFY_INCDIR)"},
libdirs = {"$(INOTIFY_LIBDIR)"}
}
}
}
|