>From 8a7a728c843f05206599d777fdd8c8a68f26eea4 Mon Sep 17 00:00:00 2001 From: Ben Woodcroft Date: Tue, 29 Dec 2015 15:05:18 +1000 Subject: [PATCH 11/12] gnu: Add ruby-ascii85. * gnu/packages/ruby.scm (ruby-ascii85): New variable. --- gnu/packages/ruby.scm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index 1a88fcb..338b0c5 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -3187,3 +3187,26 @@ specific use case.") the data therein.") (home-page "http://github.com/halfbyte/afm") (license license:expat))) + +(define-public ruby-ascii85 + (package + (name "ruby-ascii85") + (version "1.0.2") + (source + (origin + (method url-fetch) + (uri (rubygems-uri "Ascii85" version)) + (sha256 + (base32 + "0j95sbxd18kc8rhcnvl1w37kflqpax1r12h1x47gh4xxn3mz4m7q")))) + (build-system ruby-build-system) + (native-inputs + `(("bundler" ,bundler))) + (synopsis "Encode and decode Adobe's ascii85 binary-to-text encoding") + (description + "This library provides methods to encode and decode Adobe's Ascii85 +binary-to-text encoding. The main modern use of Ascii85 is in Adobe's +PostScript and Portable Document Format file formats.") + (home-page + "https://github.com/datawraith/ascii85gem") + (license license:expat))) -- 2.6.3