File: inotify-0.4-1.rockspec

package info (click to toggle)
lua-inotify 0.4%2Bgit20151119-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 88 kB
  • sloc: ansic: 235; makefile: 21
file content (29 lines) | stat: -rw-r--r-- 715 bytes parent folder | download | duplicates (2)
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)"}
                }
        }
}