diff options
author | Ludovic Courtès <ludo@gnu.org> | 2013-07-01 11:43:23 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2013-07-01 11:43:23 +0200 |
commit | 82323a80850a205866c83a9399cc76336e30847d (patch) | |
tree | e3504bcd044f8359c230f90d9470b7b3495dccf0 /gnu/packages/lsh.scm | |
parent | 1a8b783470416e37e2adc9bb94c709468233fe23 (diff) | |
download | patches-82323a80850a205866c83a9399cc76336e30847d.tar patches-82323a80850a205866c83a9399cc76336e30847d.tar.gz |
gnu: liboop: Fix & improve meta-data.
* gnu/packages/lsh.scm (liboop): Fix home page. Improve `synopsis' and
`description'. Thanks to carl hansen <carlhansen1234@gmail.com>, who
raised it on bug-gsrc@gnu.org.
Diffstat (limited to 'gnu/packages/lsh.scm')
-rw-r--r-- | gnu/packages/lsh.scm | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/gnu/packages/lsh.scm b/gnu/packages/lsh.scm index a53e0f132f..b8c155453f 100644 --- a/gnu/packages/lsh.scm +++ b/gnu/packages/lsh.scm @@ -45,9 +45,15 @@ (base32 "0z6rlalhvfca64jpvksppc9bdhs7jwhiw4y35g5ibvh91xp3rn1l")))) (build-system gnu-build-system) - (home-page "http://liboop.ofb.net/") - (synopsis "`liboop', an event loop library") - (description "liboop is an event loop library.") + (home-page "http://www.lysator.liu.se/liboop/") + (synopsis "Event loop library") + (description "Liboop is a low-level event loop management library for +POSIX-based operating systems. It supports the development of modular, +multiplexed applications which may respond to events from several sources. It +replaces the \"select() loop\" and allows the registration of event handlers +for file and network I/O, timers and signals. Since processes use these +mechanisms for almost all external communication, liboop can be used as the +basis for almost any application.") (license lgpl2.1+))) (define-public lsh |