gnu: poxml: Move to kde-sdk.scm.

* gnu/packages/kde.scm (poxml): Remove variable.
* gnu/packages/kde-sdk.scm (poxml): New variable.

Change-Id: I9f91648ea24ab2321040282fb30874115ab195e5
This commit is contained in:
Sughosha 2025-10-07 10:19:58 +05:30 committed by Andreas Enge
parent 636d0957f8
commit 6a10ac43e6
No known key found for this signature in database
GPG key ID: F7D5C9BF765C61E3
2 changed files with 26 additions and 26 deletions

View file

@ -29,6 +29,7 @@
#:use-module (gnu packages apr)
#:use-module (gnu packages boost)
#:use-module (gnu packages code)
#:use-module (gnu packages gettext)
#:use-module (gnu packages freedesktop)
#:use-module (gnu packages kde-frameworks)
#:use-module (gnu packages kde-graphics)
@ -40,6 +41,31 @@
#:use-module (gnu packages qt)
#:use-module (gnu packages version-control))
(define-public poxml
(package
(name "poxml")
(version "24.12.3")
(source (origin
(method url-fetch)
(uri
(string-append "mirror://kde/stable/release-service/" version
"/src/poxml-" version ".tar.xz"))
(sha256
(base32
"0nmclngg0mrd1j2app6fggpvp93sw5p4q1nddwq8is0dabm57yx1"))))
(build-system cmake-build-system)
(native-inputs
(list extra-cmake-modules kdoctools))
(inputs
(list gettext-minimal qtbase))
(home-page "https://apps.kde.org/development/")
(synopsis "Tools for translating DocBook XML files with Gettext")
(description "This is a collection of tools that facilitate translating
DocBook XML files using Gettext message files (PO files). Also included are
several command-line utilities for manipulating DocBook XML files, PO files and
PO template files.")
(license license:gpl2+)))
(define-public libkomparediff2
(package
(name "libkomparediff2")

View file

@ -59,7 +59,6 @@
#:use-module (gnu packages gnupg)
#:use-module (gnu packages fontutils)
#:use-module (gnu packages freedesktop)
#:use-module (gnu packages gettext)
#:use-module (gnu packages ghostscript)
#:use-module (gnu packages glib)
#:use-module (gnu packages gnome)
@ -238,28 +237,3 @@ for scanner hardware.")
Using a plugin system it is possible to create notifications with many
different notification systems.")
(license license:lgpl3)))
(define-public poxml
(package
(name "poxml")
(version "24.12.3")
(source (origin
(method url-fetch)
(uri
(string-append "mirror://kde/stable/release-service/" version
"/src/poxml-" version ".tar.xz"))
(sha256
(base32
"0nmclngg0mrd1j2app6fggpvp93sw5p4q1nddwq8is0dabm57yx1"))))
(build-system cmake-build-system)
(native-inputs
(list extra-cmake-modules kdoctools))
(inputs
(list gettext-minimal qtbase))
(home-page "https://apps.kde.org/development/")
(synopsis "Tools for translating DocBook XML files with Gettext")
(description "This is a collection of tools that facilitate translating
DocBook XML files using Gettext message files (PO files). Also included are
several command-line utilities for manipulating DocBook XML files, PO files and
PO template files.")
(license license:gpl2+)))