gnu: Add LibWapcaplet.

* gnu/packages/web.scm (libwapcaplet): New variable.
This commit is contained in:
Eric Bavier 2017-02-11 21:24:49 -06:00
parent 43bfbf1370
commit 5a0096a35d
No known key found for this signature in database
GPG Key ID: 1EBBD204781F962C
1 changed files with 27 additions and 0 deletions

View File

@ -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")