all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#40291] gnu: packages: java: Add libantlr3c
@ 2020-03-28 18:24 Raghav Gururajan
  2020-03-31  4:53 ` Maxim Cournoyer
  2020-04-02  4:09 ` [bug#40291] gnu: Add libantlr3c (v2) Raghav Gururajan
  0 siblings, 2 replies; 4+ messages in thread
From: Raghav Gururajan @ 2020-03-28 18:24 UTC (permalink / raw)
  To: 40291

[-- Attachment #1: Type: text/plain, Size: 93 bytes --]

Hello Guix!

Please find the attached patch to add "libantlr3c" package.

Regards,
RG.

[-- Attachment #2: libantlr3c.patch --]
[-- Type: application/octet-stream, Size: 1514 bytes --]

From 791e2392aaa9a3202db90c1e50340c38bd001504 Mon Sep 17 00:00:00 2001
From: Raghav Gururajan <raghavgururajan@disroot.org>
Date: Sat, 28 Mar 2020 14:21:35 -0400
Subject: [PATCH 6/6] gnu: packages: java: Add libantlr3c

* gnu/packages/java.scm (libantlr3c): New variable.
---
 gnu/packages/java.scm | 29 +++++++++++++++++++++++++++++
 1 file changed, 29 insertions(+)

diff --git a/gnu/packages/java.scm b/gnu/packages/java.scm
index 5154dc124e..400ef8795e 100644
--- a/gnu/packages/java.scm
+++ b/gnu/packages/java.scm
@@ -105,6 +105,35 @@
 ;; build framework.  We then build the more recent JDKs Icedtea 2.x and
 ;; Icedtea 3.x.
 
+(define-public libantlr3c
+ (package
+  (name "libantlr3c")
+   (version "3.4")
+   (source
+    (origin
+     (method url-fetch)
+     (uri
+      (string-append "https://www.antlr3.org/download/C/"
+                     name "-" version ".tar.gz"))
+     (sha256
+      (base32 "0lpbnb4dq4azmsvlhp6khq1gy42kyqyjv8gww74g5lm2y6blm4fa"))))
+ (build-system gnu-build-system)
+ (arguments
+  `(#:configure-flags
+    (list
+     "--enable-debuginfo"
+     "--enable-64bit"
+     "--enable-abiflags"
+     "--enable-antlrdebug"
+     "--enable-shared"
+     "--enable-static"
+     "--enable-fast-install")))
+ (synopsis "ANTLR C Library")
+ (description "LIBANTLR3C provides run-time C libraries for ANTLR3
+(ANother Tool for Language Recognition v3).")
+ (home-page "https://www.antlr3.org/")
+ (license license:bsd-3)))
+
 (define jikes
   (package
     (name "jikes")
-- 
2.26.0


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2020-04-02  4:10 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-03-28 18:24 [bug#40291] gnu: packages: java: Add libantlr3c Raghav Gururajan
2020-03-31  4:53 ` Maxim Cournoyer
2020-04-01  2:37   ` bug#40291: " Maxim Cournoyer
2020-04-02  4:09 ` [bug#40291] gnu: Add libantlr3c (v2) Raghav Gururajan

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.