forked from zdharma-continuum/zinit
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add configure"" ice (zdharma-continuum#334)
### configure ice The new `configure''` ice is a facade for the following code. ```zsh atclone'./configure --prefix=$PWD' atpull'%atclone' ``` ### Example: Without the `configure` ice: ```zsh zi for \ as'null' \ atclone'autoreconf -iv && ./configure --prefix=$PWD' \ atpull'%atclone' \ lbin'!**/stow' \ make'PREFIX=$PWD install' \ nocompile \ @aspiers/stow ``` With the `configure` ice: ```zsh zi for \ as'null' \ configure'#' \ lbin'!**/stow' \ make'PREFIX=$PWD install' \ nocompile \ @aspiers/stow ``` Additionally, passing `#` as the ice value will look for and run `autogen.sh` prior to running `./configure`.
- Loading branch information
Showing
3 changed files
with
62 additions
and
1 deletion.
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
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
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