guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/01: gnu: Add tintin++.


From: Efraim Flashner
Subject: 01/01: gnu: Add tintin++.
Date: Tue, 6 Sep 2016 18:58:12 +0000 (UTC)

efraim pushed a commit to branch master
in repository guix.

commit 751c70404b176082e20f6bcc4d014227ccfe2f7d
Author: ng0 <address@hidden>
Date:   Mon Aug 8 19:54:50 2016 +0000

    gnu: Add tintin++.
    
    * gnu/packages/games.scm (tintin++): New variable.
    
    Signed-off-by: Efraim Flashner <address@hidden>
---
 gnu/packages/games.scm |   38 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 38 insertions(+)

diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
index 88330c7..d386e2c 100644
--- a/gnu/packages/games.scm
+++ b/gnu/packages/games.scm
@@ -101,6 +101,8 @@
   #:use-module (gnu packages xml)
   #:use-module (gnu packages tcl)
   #:use-module (gnu packages xdisorg)
+  #:use-module (gnu packages tls)
+  #:use-module (gnu packages pcre)
   #:use-module (guix build-system gnu)
   #:use-module (guix build-system haskell)
   #:use-module (guix build-system python)
@@ -2736,6 +2738,42 @@ the GNU GPL.")
    (home-page "https://supertuxproject.org/";)
    (license license:gpl3+)))
 
+(define-public tintin++
+  (package
+    (name "tintin++")
+    (version "2.01.1")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append "https://sourceforge.net/projects/tintin";
+                                  "/files/TinTin++ Source Code/" version
+                                  "/tintin" "-" version ".tar.gz"))
+              (sha256
+               (base32
+                "195wrfcys8yy953gdrl1gxryhjnx9lg1vqgxm3dyzm8bi18aa2yc"))))
+    (inputs
+     `(("gnutls" ,gnutls)
+       ("pcre" ,pcre)
+       ("readline" ,readline)
+       ("zlib" ,zlib)))
+    (arguments
+     '(#:tests? #f ; no test suite
+       #:phases
+       (modify-phases %standard-phases
+         ;; The source is in tt/src.
+         (add-before 'configure 'chdir
+           (lambda _
+             (chdir "src")
+             #t)))))
+    (build-system gnu-build-system)
+    (home-page "http://tintin.sourceforge.net/";)
+    (synopsis "MUD client")
+    (description
+     "TinTin++ is a MUD client which supports MCCP (Mud Client Compression 
Protocol),
+MMCP (Mud Master Chat Protocol), xterm 256 colors, most TELNET options used by 
MUDs,
+as well as those required to login via telnet on Linux / Mac OS X servers, and 
an
+auto mapper with a VT100 map display.")
+    (license license:gpl2+)))
+
 (define-public laby
   (package
     (name "laby")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]