Fix swiper build (#2907)

hydra is a build-time dependency of swiper since
40e017dc1b
and this patch follows that change in the recipe

Also see https://github.com/abo-abo/swiper/issues/3011
This commit is contained in:
pasja 2023-06-23 09:18:54 +02:00 committed by GitHub
parent 887bedb495
commit d8321df8c4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,10 +1,20 @@
(:name swiper
:description "Gives you an overview as you search for a regex."
:type github
:depends (cl-lib avy)
:depends (cl-lib avy hydra)
:pkgname "abo-abo/swiper"
:build `(("make" ,(format "emacs=%s -L %s" el-get-emacs (concat (file-name-as-directory el-get-dir) "avy")) "compile")
("makeinfo" "-o" "doc/ivy.info" "doc/ivy.texi"))
:build/berkeley-unix `(("gmake" ,(format "emacs=%s -L %s" el-get-emacs (concat (file-name-as-directory el-get-dir) "avy")) "compile")
("gmakeinfo" "-o" "doc/ivy.info" "doc/ivy.texi"))
:build `(("make"
,(format "emacs=%s -L %s -L %s"
el-get-emacs
(concat (file-name-as-directory el-get-dir) "avy")
(concat (file-name-as-directory el-get-dir) "hydra"))
"compile")
("makeinfo" "-o" "doc/ivy.info" "doc/ivy.texi"))
:build/berkeley-unix `(("gmake"
,(format "emacs=%s -L %s -L %s"
el-get-emacs
(concat (file-name-as-directory el-get-dir) "avy")
(concat (file-name-as-directory el-get-dir) "hydra"))
"compile")
("gmakeinfo" "-o" "doc/ivy.info" "doc/ivy.texi"))
:info "doc/ivy.info")