unofficial mirror of guile-user@gnu.org 
 help / color / mirror / Atom feed
* [ANN] Guile-XOSD 0.2
@ 2016-07-22  7:55 Alex Kost
  0 siblings, 0 replies; only message in thread
From: Alex Kost @ 2016-07-22  7:55 UTC (permalink / raw)
  To: guile-user

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

Guile-XOSD provides Guile bindings for 'libxosd' library:
<https://github.com/alezost/guile-xosd>

The main change since v0.1 is: original procedures (with "xosd-" prefix)
moved to (xosd bindings) module.  Now (xosd) module contains more
"Schemey" procedures (for example 'make-osd' with keyword arguments).

All changes can be found in the NEWS file:
<https://github.com/alezost/guile-xosd/tree/master/NEWS>.

See README and info manual for examples of using Guile-XOSD.

————————————————————————————————————————————————————————————————
Git repo: git://github.com/alezost/guile-xosd.git

The release tarball:
https://github.com/alezost/guile-xosd/releases/download/v0.2/guile-xosd-0.2.tar.gz

MD5: c05340d0c6f1716c33cd0e75993d4a55  guile-xosd-0.2.tar.gz
SHA256: 5b522cb77ac7789a7713bafdeb029987f1a6ce87001b5b2ed58e31e6e7010bc8  guile-xosd-0.2.tar.gz

————————————————————————————————————————————————————————————————
Guile-XOSD can be installed with GNU Guix using the attached
"guile-xosd.scm" file:

  guix package --install-from-file=guile-xosd.scm


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: guile-xosd.scm --]
[-- Type: text/x-scheme, Size: 1044 bytes --]

(use-modules
 (guix packages)
 (guix download)
 (guix licenses)
 (guix build-system gnu)
 (gnu packages guile)
 (gnu packages pkg-config)
 (gnu packages xorg)
 (gnu packages xdisorg))

(package
  (name "guile-xosd")
  (version "0.2")
  (source (origin
            (method url-fetch)
            (uri (string-append "https://github.com/alezost/" name
                                "/releases/download/v" version
                                "/" name "-" version ".tar.gz"))
            (sha256
             (base32
              "1j0b07kycccfslp5n6q0hz7adwc7k41fpzds2dvrly67gavjqljv"))))
  (build-system gnu-build-system)
  (native-inputs
   `(("pkg-config" ,pkg-config)))
  (inputs
   `(("guile" ,guile-2.0)
     ("libx11" ,libx11)
     ("libxext" ,libxext)
     ("libxinerama" ,libxinerama)
     ("xosd" ,xosd)))
  (home-page "https://github.com/alezost/guile-xosd")
  (synopsis "XOSD bindings for Guile")
  (description
   "Guile-XOSD provides Guile bindings for @code{libxosd}, the \"X On
Screen Display\" library.")
  (license gpl3+))

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2016-07-22  7:55 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-07-22  7:55 [ANN] Guile-XOSD 0.2 Alex Kost

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).