File: lualdap-1.2.3-1.rockspec

package info (click to toggle)
lua-ldap 1.4.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 448 kB
  • sloc: ansic: 776; sh: 72; makefile: 62
file content (34 lines) | stat: -rw-r--r-- 719 bytes parent folder | download | duplicates (4)
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
package="lualdap"
version="1.2.3-1"
source = {
   url = "git://github.com/bdellegrazie/lualdap",
   tag = "v1.2.3",
}
description = {
   summary = "Simple interface from Lua to an LDAP Client",
   detailed = [[
      Simple interface from Lua to an LDAP client.
   ]],
   homepage = "https://github.com/bdellegrazie/lualdap",
   license = "MIT"
}
dependencies = {
   "lua >= 5.1, < 5.3"
}
external_dependencies = {
   LIBLDAP = {
      header = "ldap.h",
      library = "ldap",
   }
}
build = {
   type = "builtin",
   modules = {
      lualdap = {
         sources = {"src/lualdap.c"},
         libdirs = {"$(LIBLDAP_LIBDIR)"},
         incdirs = {"$(LIBLDAP_INCDIR)"},
         libraries = {"ldap"},
      },
   }
}