diff options
author | MCApollo <34170230+MCApollo@users.noreply.github.com> | 2019-04-20 20:49:46 -0500 |
---|---|---|
committer | MCApollo <34170230+MCApollo@users.noreply.github.com> | 2019-04-23 20:18:47 -0500 |
commit | 12335518ab39608d58370c85ff9f5384ad2aa5f7 (patch) | |
tree | 352d81f2a2de3f1252af732080ec0fde38c13b4d /homebrew/udns/.beer | |
parent | a2b26ad12d4fa12f0273645caf4be6d0b8b71e7c (diff) |
Ported in the homebrew-marauder for a hacky update/import system.
TODO: Maybe add a license & fix up messy code.
Diffstat (limited to 'homebrew/udns/.beer')
-rw-r--r-- | homebrew/udns/.beer | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/homebrew/udns/.beer b/homebrew/udns/.beer new file mode 100644 index 000000000..2c9dd9cad --- /dev/null +++ b/homebrew/udns/.beer @@ -0,0 +1,58 @@ +{ + "name": "Udns", + "description": "DNS resolver library", + "url": "http://www.corpit.ru/mjt/udns/udns-0.4.tar.gz", + "mirror": null, + "homepage": "http://www.corpit.ru/mjt/udns.html", + "depends": [], + "resource": [], + "conflicts": [], + "patches": [ + { + "url": null, + "data": [ + "--- udns-0.4.orig/Makefile.in\t2014-01-23 02:45:31.000000000 -0800\n", + "+++ udns-0.4/Makefile.in\t2014-08-16 20:22:00.000000000 -0700\n", + "@@ -42,6 +42,11 @@\n", + " SOLIBV = lib$(NAME).so.$(SOVER)\n", + " SOLIBFL= -L. -l$(NAME)_s\n", + " \n", + "+DYLIB = lib$(NAME).dylib\n", + "+DYLIBV = lib$(NAME).$(SOVER).dylib\n", + "+\n", + "+LIBS = $(LIB) $(SOLIBV) $(DYLIB)\n", + "+\n", + " UTILS = $(USRCS:.c=)\n", + " UOBJS = $(USRCS:.c=.o)\n", + " SOUTILS = $(USRCS:.c=_s)\n", + "@@ -71,6 +76,14 @@\n", + " .c.o:\n", + " \t$(CC) $(CFLAGS) $(CDEFS) -c $<\n", + " \n", + "+dylib: $(DYLIB)\n", + "+\n", + "+$(DYLIBV): $(SOBJS)\n", + "+\t$(CC) -dynamiclib $(SOBJS) -o $(DYLIBV)\n", + "+$(DYLIB): $(DYLIBV)\n", + "+\trm -rf $@\n", + "+\tln -s $(DYLIBV) $@\n", + "+\n", + " shared: $(SOLIBV) $(SOUTILS)\n", + " sharedlib: $(SOLIBV)\n" + ] + } + ], + "install": [ + "system \"./configure\"", + "system \"make\"", + "system \"make\", \"dylib\"", + "bin.install \"dnsget\", \"rblcheck\"", + "doc.install \"NOTES\", \"TODO\", \"ex-rdns.c\"", + "include.install \"udns.h\"", + "lib.install \"libudns.a\", \"libudns.0.dylib\", \"libudns.dylib\"", + "man1.install \"dnsget.1\", \"rblcheck.1\"", + "man3.install \"udns.3\"" + ], + "version": "0.4", + "file": "udns.rb" +}
\ No newline at end of file |