[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#49210] [PATCH v5 13/16] gnu: Add perl-encode.
From: |
Raghav Gururajan |
Subject: |
[bug#49210] [PATCH v5 13/16] gnu: Add perl-encode. |
Date: |
Sat, 3 Jul 2021 21:03:17 -0400 |
* gnu/packages/perl.scm (perl-encode): New variable.
---
gnu/packages/perl.scm | 22 ++++++++++++++++++++++
1 file changed, 22 insertions(+)
diff --git a/gnu/packages/perl.scm b/gnu/packages/perl.scm
index b9a8e4cc79..e6de06c99d 100644
--- a/gnu/packages/perl.scm
+++ b/gnu/packages/perl.scm
@@ -3987,6 +3987,28 @@ very platform-dependent, so correct use of these
functions requires
the programmer to be mindfulof the space of platform variations.")
(license license:perl-license)))
+(define-public perl-encode
+ (package
+ (name "perl-encode")
+ (version "3.10")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "mirror://cpan/authors/id/D/DA/DANKOGAI/"
+ "Encode-" version ".tar.gz"))
+ (sha256
+ (base32 "1a8rwcrxxhq81jcdvdwns05c65jwr5r6bxvby6vdcr3ny5m91my2"))))
+ (build-system perl-build-system)
+ (propagated-inputs
+ `(("perl-exporter" ,perl-exporter)
+ ("perl-storable" ,perl-storable)
+ ("perl-parent" ,perl-parent)))
+ (home-page "https://metacpan.org/dist/Encode")
+ (synopsis "Character encodings in Perl")
+ (description "Encode module provides the interface between Perl strings and
+the rest of the system. Perl strings are sequences of characters.")
+ (license (package-license perl))))
+
(define-public perl-encode-detect
(package
(name "perl-encode-detect")
--
2.32.0
- [bug#49210] [PATCH v5 08/16] gnu: Add perl-text-parsewords., (continued)
- [bug#49210] [PATCH v5 08/16] gnu: Add perl-text-parsewords., Raghav Gururajan, 2021/07/03
- [bug#49210] [PATCH v5 09/16] gnu: Add perl-term-ansicolor., Raghav Gururajan, 2021/07/03
- [bug#49210] [PATCH v5 05/16] gnu: Add perl-glib-object-introspection., Raghav Gururajan, 2021/07/03
- [bug#49210] [PATCH v5 06/16] gnu: Add perl-gtk3., Raghav Gururajan, 2021/07/03
- [bug#49210] [PATCH v5 11/16] gnu: Add perl-xsloader., Raghav Gururajan, 2021/07/03
- [bug#49210] [PATCH v5 10/16] gnu: Add perl-test-portability-files., Raghav Gururajan, 2021/07/03
- [bug#49210] [PATCH v5 15/16] gnu: Add pipe-viewer., Raghav Gururajan, 2021/07/03
- [bug#49210] [PATCH v5 16/16] gnu: straw-viewer: Deprecate package., Raghav Gururajan, 2021/07/03
- [bug#49210] [PATCH v5 12/16] gnu: Add perl-storable., Raghav Gururajan, 2021/07/03
- [bug#49210] [PATCH v5 14/16] gnu: Add perl-mime-base64., Raghav Gururajan, 2021/07/03
- [bug#49210] [PATCH v5 13/16] gnu: Add perl-encode.,
Raghav Gururajan <=