mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: gcide: Use the copy-build-system.
* gnu/packages/dictionaries.scm (gcide2)[build-system]: Use the copy-build-system.
This commit is contained in:
parent
e90e64049c
commit
11386e1801
1 changed files with 4 additions and 18 deletions
|
@ -31,6 +31,7 @@ (define-module (gnu packages dictionaries)
|
|||
#:use-module (guix build-system gnu)
|
||||
#:use-module (guix build-system python)
|
||||
#:use-module (guix build-system trivial)
|
||||
#:use-module (guix build-system copy)
|
||||
#:use-module (gnu packages)
|
||||
#:use-module (gnu packages autotools)
|
||||
#:use-module (gnu packages base)
|
||||
|
@ -109,25 +110,10 @@ (define-public gcide
|
|||
(sha256
|
||||
(base32
|
||||
"1n3bp91sik66z3ca7mjqbr9nck3hg5ck0c8g84xc0qnfpx5vznh2"))))
|
||||
(build-system trivial-build-system)
|
||||
(build-system copy-build-system)
|
||||
(arguments
|
||||
'(#:builder (begin
|
||||
(use-modules (guix build utils))
|
||||
(let* ((src (assoc-ref %build-inputs "source"))
|
||||
(tar (assoc-ref %build-inputs "tar"))
|
||||
(xz (assoc-ref %build-inputs "xz"))
|
||||
(out (assoc-ref %outputs "out"))
|
||||
(datadir (string-append out "/share/gcide")))
|
||||
(set-path-environment-variable "PATH" '("bin")
|
||||
(list tar xz))
|
||||
(mkdir-p datadir)
|
||||
(invoke "tar" "-C" datadir
|
||||
"--strip-components=1"
|
||||
"-xvf" src)))
|
||||
#:modules ((guix build utils))))
|
||||
(native-inputs
|
||||
`(("tar" ,tar)
|
||||
("xz" ,xz)))
|
||||
'(#:install-plan
|
||||
'(("." "share/gcide/" #:exclude ("COPYING")))))
|
||||
(synopsis "GNU Collaborative International Dictionary of English")
|
||||
(description
|
||||
"GCIDE is a free dictionary based on a combination of sources. It can
|
||||
|
|
Loading…
Reference in a new issue