guix-commits
[Top][All Lists]
Advanced

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

06/17: gnu: Add LibWapcaplet.


From: Eric Bavier
Subject: 06/17: gnu: Add LibWapcaplet.
Date: Mon, 13 Feb 2017 23:37:17 -0500 (EST)

bavier pushed a commit to branch master
in repository guix.

commit 5a0096a35d0653c2c004a66543cf7615a0c5d398
Author: Eric Bavier <address@hidden>
Date:   Sat Feb 11 21:24:49 2017 -0600

    gnu: Add LibWapcaplet.
    
    * gnu/packages/web.scm (libwapcaplet): New variable.
---
 gnu/packages/web.scm | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)

diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm
index 5ace1eb..dc08942 100644
--- a/gnu/packages/web.scm
+++ b/gnu/packages/web.scm
@@ -51,6 +51,7 @@
   #:use-module (guix build-system python)
   #:use-module (gnu packages)
   #:use-module (gnu packages apr)
+  #:use-module (gnu packages check)
   #:use-module (gnu packages documentation)
   #:use-module (gnu packages docbook)
   #:use-module (gnu packages autotools)
@@ -3822,6 +3823,32 @@ parse both valid and invalid web content.  It is 
developed as part of the
 NetSurf project.")
     (license l:expat)))
 
+(define-public libwapcaplet
+  (package
+    (name "libwapcaplet")
+    (version "0.3.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "http://download.netsurf-browser.org/libs/releases/";
+                           name "-" version "-src.tar.gz"))
+       (sha256
+        (base32
+         "0cs1dd2afjgc3wf5gqg434hv6jdabrp9qvlpl4dp53nhkyfywna3"))))
+    (build-system gnu-build-system)
+    (native-inputs
+     `(("netsurf-buildsystem" ,netsurf-buildsystem)
+       ("pkg-config" ,pkg-config)
+       ("check" ,check)))               ;for tests
+    (arguments netsurf-buildsystem-arguments)
+    (home-page "http://www.netsurf-browser.org/projects/libwapcaplet/";)
+    (synopsis "String internment library")
+    (description
+     "LibWapcaplet provides a reference counted string internment system
+designed to store small strings and allow rapid comparison of them.  It is
+developed as part of the Netsurf project.")
+    (license l:expat)))
+
 (define-public netsurf
   (package
     (name "netsurf")



reply via email to

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