From 00eb5b67c78fe8e15d3e03ff4ff450d106fad690 Mon Sep 17 00:00:00 2001 From: ng0 Date: Sat, 9 Sep 2017 13:59:39 +0000 Subject: [PATCH 2/3] gnu: Add libisofs. * gnu/packages/cdrom.scm (libisofs): New variable. --- gnu/packages/cdrom.scm | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/gnu/packages/cdrom.scm b/gnu/packages/cdrom.scm index 478685a24..5b387f107 100644 --- a/gnu/packages/cdrom.scm +++ b/gnu/packages/cdrom.scm @@ -721,3 +721,30 @@ It uses either @file{/dev/sgN} (e.g. on kernel 2.4 with ide-scsi) or @file{/dev/ or @file{/dev/hdX} (e.g. on kernel 2.6). libburn is the foundation of the libburnia-project cdrecord emulation. Its code is independent of cdrecord.") (license gpl2))) + +(define-public libisofs + (package + (name "libisofs") + (version "1.4.6") + (source (origin + (method url-fetch) + (uri (string-append "http://files.libburnia-project.org/releases/" + "libisofs-" version ".tar.gz")) + (sha256 + (base32 + "02m5g6lbmmkh2xc5xzq5zaf3ma6v31gls66aj886b3cq9qw0paql")))) + (build-system gnu-build-system) + (inputs + `(("zlib" ,zlib))) + (native-inputs + `(("pkg-config" ,pkg-config))) + (home-page "https://dev.lovelyhq.com/libburnia/libisofs") + (synopsis "library for reading, mastering and writing optical discs") + (description + "libisofs is a library to create an ISO-9660 filesystem, supports extensions +like RockRidge or Joliet, and introduces an own extension AAIP. It is a full +featured ISO-9660 editor which composes and changes the directory tree of an +ISO image. This tree and its newly imported data file contents get then +written as independent single-session image or as add-on session for the image +from where the tree was originally loaded.") + (license gpl2+))) -- 2.14.1