gnu: emacs-gif-screencast: Update to 1.0-2.248d1e1.

* gnu/packages/emacs-xyz.scm (emacs-gif-screencast): Update to 1.0-2.248d1e1.
master
Brian Leung 2019-10-10 06:44:51 +02:00
parent aa694009c7
commit c2acf8f32b
No known key found for this signature in database
GPG Key ID: 3ADC75F013D678F9
1 changed files with 29 additions and 28 deletions

View File

@ -14612,45 +14612,46 @@ try completing. See @code{fish-completion-fallback-on-bash-p}.")
(license license:gpl3+))) (license license:gpl3+)))
(define-public emacs-gif-screencast (define-public emacs-gif-screencast
(let ((commit "12b25442b97b84abae74ecb5190a9d14ff7cfe5a")) (let ((commit "248d1e158405e6cba2c65ecaed40e2c59b089cd8")
(revision "2"))
(package (package
(name "emacs-gif-screencast") (name "emacs-gif-screencast")
(version (git-version "20180616" "1" commit)) (version (git-version "1.0" revision commit))
(source (source
(origin (origin
(method url-fetch) (method git-fetch)
(uri (string-append (uri (git-reference
"https://gitlab.com/Ambrevar/emacs-gif-screencast/" (url "https://gitlab.com/Ambrevar/emacs-gif-screencast.git")
"repository/archive.tar.gz?ref=" (commit commit)))
commit))
(sha256 (sha256
(base32 (base32
"0lc457i78xjkn5idr2aaiadkh76zcsksj84z0qh80a9y775syrgh")))) "19xqi5mgalnnhb4hw0fh7py2s2dllldx1xxbhwhknkdpifai8hl8"))))
(build-system emacs-build-system) (build-system emacs-build-system)
(inputs (inputs
`(("scrot" ,scrot) `(("scrot" ,scrot)
("imagemagick" ,imagemagick) ("imagemagick" ,imagemagick)
("gifsicle" ,gifsicle))) ("gifsicle" ,gifsicle)))
(arguments (arguments
`(#:phases `(#:phases
(modify-phases %standard-phases (modify-phases %standard-phases
(add-after 'unpack 'configure (add-after 'unpack 'configure
(lambda* (#:key inputs outputs #:allow-other-keys) (lambda* (#:key inputs outputs #:allow-other-keys)
(let ((scrot (assoc-ref inputs "scrot")) (let ((scrot (assoc-ref inputs "scrot"))
(imagemagick (assoc-ref inputs "imagemagick")) (imagemagick (assoc-ref inputs "imagemagick"))
(gifsicle (assoc-ref inputs "gifsicle"))) (gifsicle (assoc-ref inputs "gifsicle")))
;; Specify the absolute file names of the various (make-file-writable "gif-screencast.el")
;; programs so that everything works out-of-the-box. ;; Specify the absolute file names of the various
(emacs-substitute-variables ;; programs so that everything works out-of-the-box.
"gif-screencast.el" (emacs-substitute-variables
("gif-screencast-program" "gif-screencast.el"
(string-append scrot "/bin/scrot")) ("gif-screencast-program"
("gif-screencast-convert-program" (string-append scrot "/bin/scrot"))
(string-append imagemagick "/bin/convert")) ("gif-screencast-convert-program"
("gif-screencast-cropping-program" (string-append imagemagick "/bin/convert"))
(string-append imagemagick "/bin/mogrify")) ("gif-screencast-cropping-program"
("gif-screencast-optimize-program" (string-append imagemagick "/bin/mogrify"))
(string-append gifsicle "/bin/gifsicle"))))))))) ("gif-screencast-optimize-program"
(string-append gifsicle "/bin/gifsicle")))))))))
(home-page (home-page
"https://gitlab.com/Ambrevar/emacs-gif-screencast") "https://gitlab.com/Ambrevar/emacs-gif-screencast")
(synopsis "One-frame-per-action GIF recording") (synopsis "One-frame-per-action GIF recording")