-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
35 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# Aquifer file version | ||
version: '0' | ||
|
||
# Package name | ||
name: 'template' | ||
|
||
# Install plan | ||
# Define dependencies and shell scripts for each OS | ||
# Dependencies are an array of package names | ||
# Shell scripts are defined by an array | ||
install: | ||
linux: | ||
dependencies: [] | ||
run: [] | ||
windows: | ||
dependencies: [] | ||
run: [] | ||
darwin: | ||
dependencies: [] | ||
run: [] | ||
|
||
# Uninstall plan | ||
# Define dependencies and shell scripts for each OS | ||
# Dependencies are an array of package names | ||
# Shell scripts are defined by an array | ||
uninstall: | ||
linux: | ||
dependencies: [] | ||
run: [] | ||
windows: | ||
dependencies: [] | ||
run: [] | ||
darwin: | ||
dependencies: [] | ||
run: [] |