mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: liblcf: Update to 0.8.1.
* gnu/packages/easyrpg.scm (liblcf): Update to 0.8.1. [propagated-inputs]: Add libinih. [license]: Update comment. Change-Id: Id137c466d8e49e10981837211cf0bd51dbab32ce
This commit is contained in:
parent
98b02667e3
commit
04d4b01979
1 changed files with 7 additions and 14 deletions
|
@ -1,5 +1,5 @@
|
||||||
;;; GNU Guix --- Functional package management for GNU
|
;;; GNU Guix --- Functional package management for GNU
|
||||||
;;; Copyright © 2018 Sou Bunnbu <iyzsong@member.fsf.org>
|
;;; Copyright © 2018, 2025 宋文武 <iyzsong@envs.net>
|
||||||
;;; Copyright © 2019–2021 Tobias Geerinckx-Rice <me@tobias.gr>
|
;;; Copyright © 2019–2021 Tobias Geerinckx-Rice <me@tobias.gr>
|
||||||
;;; Copyright © 2020 Efraim Flashner <efraim@flashner.co.il>
|
;;; Copyright © 2020 Efraim Flashner <efraim@flashner.co.il>
|
||||||
;;; Copyright © 2024 gemmaro <gemmaro.dev@gmail.com>
|
;;; Copyright © 2024 gemmaro <gemmaro.dev@gmail.com>
|
||||||
|
@ -30,6 +30,7 @@
|
||||||
#:use-module (gnu packages gtk)
|
#:use-module (gnu packages gtk)
|
||||||
#:use-module (gnu packages icu4c)
|
#:use-module (gnu packages icu4c)
|
||||||
#:use-module (gnu packages image)
|
#:use-module (gnu packages image)
|
||||||
|
#:use-module (gnu packages linux)
|
||||||
#:use-module (gnu packages mp3)
|
#:use-module (gnu packages mp3)
|
||||||
#:use-module (gnu packages pkg-config)
|
#:use-module (gnu packages pkg-config)
|
||||||
#:use-module (gnu packages pretty-print)
|
#:use-module (gnu packages pretty-print)
|
||||||
|
@ -42,7 +43,7 @@
|
||||||
(define-public liblcf
|
(define-public liblcf
|
||||||
(package
|
(package
|
||||||
(name "liblcf")
|
(name "liblcf")
|
||||||
(version "0.8")
|
(version "0.8.1")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append
|
(uri (string-append
|
||||||
|
@ -50,28 +51,20 @@
|
||||||
"/liblcf-" version ".tar.gz"))
|
"/liblcf-" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0kskflh2izc8q5p5x0rfxw8xa3591xfkmqf74rj72ff34xri4nj1"))))
|
"1b68yhs14b4ql1wfbm0jzklyqyi3b2wm3pm9zhx0ij2a98c8cnli"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list pkg-config))
|
(list pkg-config))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
;; Required by 'liblcf.pc'.
|
;; Required by 'liblcf.pc'.
|
||||||
(list expat icu4c))
|
(list expat icu4c libinih))
|
||||||
(home-page "https://easyrpg.org/")
|
(home-page "https://easyrpg.org/")
|
||||||
(synopsis "Library to handle RPG Maker 2000 and 2003 game data")
|
(synopsis "Library to handle RPG Maker 2000 and 2003 game data")
|
||||||
(description
|
(description
|
||||||
"@code{liblcf} is a library to handle RPG Maker 2000 and 2003 game data.
|
"@code{liblcf} is a library to handle RPG Maker 2000 and 2003 game data.
|
||||||
It can read and write LCF and XML files.")
|
It can read and write LCF and XML files.")
|
||||||
;; It includes a copy of Boost Preprocessor Cat and Stringize (boost-1.0):
|
;; It includes a copy of span-lite (boost-1.0):
|
||||||
;; src/boost/preprocessor/config.hpp
|
;; src/lcf/third_party/span.h
|
||||||
;; src/boost/preprocessor/cat.hpp
|
|
||||||
;; src/boost/preprocessor/stringize.hpp
|
|
||||||
;; and a copy of inih (bsd-3):
|
|
||||||
;; src/ini.h
|
|
||||||
;; src/ini.cpp
|
|
||||||
;; src/inireader.h
|
|
||||||
;; src/inireader.cpp
|
|
||||||
;; TODO: Unbundle them.
|
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public easyrpg-player
|
(define-public easyrpg-player
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue