mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: metapixel: Rewrite with G-Expressions.
* gnu/packages/image-processing.scm (metapixel)[arguments]: Rewrite with G-Expressions. [inputs, native-inputs]: Drop labels. Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
This commit is contained in:
parent
775c41827c
commit
7fb994ebbf
1 changed files with 23 additions and 23 deletions
|
@ -1556,30 +1556,30 @@ full-featured UI aimed at clinical researchers.")
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "0r7n3a6bvcxkbpda4mwmrpicii09iql5z69nkjqygkwxw7ny3309"))))
|
(base32 "0r7n3a6bvcxkbpda4mwmrpicii09iql5z69nkjqygkwxw7ny3309"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(inputs
|
|
||||||
`(("giflib" ,giflib)
|
|
||||||
("libjpeg" ,libjpeg-turbo)
|
|
||||||
("libpng" ,libpng)
|
|
||||||
("perl" ,perl)))
|
|
||||||
(native-inputs
|
|
||||||
`(("pkg-config" ,pkg-config)
|
|
||||||
("docbook-xml" ,docbook-xml-4.2)
|
|
||||||
("docbook-xsl" ,docbook-xsl)
|
|
||||||
("xsltproc" ,libxslt)))
|
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f ; No tests.
|
(list
|
||||||
#:make-flags (list
|
#:tests? #f ; No tests.
|
||||||
(string-append "PREFIX=" (assoc-ref %outputs "out"))
|
#:make-flags
|
||||||
(string-append "MANPAGE_XSL="
|
#~(list
|
||||||
(assoc-ref %build-inputs "docbook-xsl")
|
(string-append "PREFIX=" #$output)
|
||||||
"/xml/xsl/docbook-xsl-*/manpages/docbook.xsl"))
|
(format #f "MANPAGE_XSL=~a/xml/xsl/~a-~a/manpages/docbook.xsl"
|
||||||
|
#$(this-package-native-input "docbook-xsl")
|
||||||
|
#$(package-name
|
||||||
|
(this-package-native-input "docbook-xsl"))
|
||||||
|
#$(package-version
|
||||||
|
(this-package-native-input "docbook-xsl"))))
|
||||||
#:phases
|
#:phases
|
||||||
(modify-phases %standard-phases
|
#~(modify-phases %standard-phases
|
||||||
(delete 'configure)
|
(delete 'configure)
|
||||||
(add-before 'install 'fix-directory-creation
|
(add-before 'install 'fix-directory-creation
|
||||||
(lambda* (#:key outputs #:allow-other-keys)
|
(lambda _
|
||||||
(mkdir-p (string-append (assoc-ref outputs "out") "/share/man/man1"))
|
(mkdir-p (string-append #$output "/share/man/man1")))))))
|
||||||
#t)))))
|
(inputs
|
||||||
|
(list giflib libjpeg-turbo libpng
|
||||||
|
perl))
|
||||||
|
(native-inputs
|
||||||
|
(list docbook-xml-4.2 docbook-xsl
|
||||||
|
libxslt pkg-config))
|
||||||
(home-page "https://www.complang.tuwien.ac.at/schani/metapixel/")
|
(home-page "https://www.complang.tuwien.ac.at/schani/metapixel/")
|
||||||
(synopsis "Photomosaics generator")
|
(synopsis "Photomosaics generator")
|
||||||
(description "Metapixel is a program for generating photomosaics. It can
|
(description "Metapixel is a program for generating photomosaics. It can
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue