-
Notifications
You must be signed in to change notification settings - Fork 456
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
hydra is a build-time dependency of swiper since 40e017dc1bc4655f7c3cf4bbbe3a827ce2fff213 and this patch follows that change in the recipe Also see abo-abo/swiper#3011
- Loading branch information
Showing
1 changed file
with
11 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,16 @@ | ||
(: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") |