-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The "Support Private Records" Version
* Support the encoding of private RRs * bug fix---allow RR_OPT in answer section (sigh)
- Loading branch information
Showing
4 changed files
with
52 additions
and
54 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
package = "org.conman.dns" | ||
version = "2.1.0-1" | ||
source = { | ||
url = "git+https://github.com/spc476/SPCDNS.git", | ||
tag = "v2.1.0" | ||
} | ||
description = { | ||
summary = "A Lua module to encode DNS queries and decode DNS answers.", | ||
detailed = [[ | ||
A simple interface to encode and decode DNS queries. This supports | ||
most of the commonly used DNS records and is meant to be a low level | ||
API upon which a generalized DNS query system can be built. | ||
]], | ||
homepage = "http://www.conman.org/software/spcdns/", | ||
license = "LGPL", | ||
maintainer = "Sean Conner <sean@conman.org>" | ||
} | ||
dependencies = { | ||
"lua >= 5.1, <= 5.4" | ||
} | ||
build = { | ||
type = "make", | ||
platforms = { | ||
linux = { | ||
build_variables = { | ||
CC = "gcc -std=c99" | ||
} | ||
}, | ||
solaris = { | ||
build_varaibles = { | ||
CC = "c99" | ||
} | ||
} | ||
}, | ||
build_target = "src/dns.so", | ||
build_variables = { | ||
CC = "$(CC)", | ||
CFLAGS = "$(CFLAGS) -I$(LUA_INCDIR)", | ||
LDSHARE = "$(LIBFLAG)", | ||
LUA = "$(LUA)" | ||
}, | ||
install_target = "install-lua", | ||
install_variables = { | ||
LIBDIR = "$(LIBDIR)", | ||
LUA = "$(LUA)" | ||
} | ||
} |