File: inotify-0.5-1.rockspec

package info (click to toggle)
lua-inotify 0.5-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, sid, trixie
  • size: 88 kB
  • sloc: ansic: 239; makefile: 21
file content (29 lines) | stat: -rw-r--r-- 715 bytes parent folder | download
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.5-1"
source = {
        url = 'https://github.com/hoelzro/linotify/archive/0.5.tar.gz',
        dir = 'linotify-0.5',
}
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)"}
                }
        }
}