-
Notifications
You must be signed in to change notification settings - Fork 4
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
1 parent
eac8d9a
commit 852f5b0
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 @@ | ||
#!/bin/bash | ||
usage() { | ||
echo "SCons is an Open Source software construction tool. Think of SCons as an improved, cross-platform substitute | ||
for the classic Make utility with integrated functionality similar to autoconf/automake | ||
and compiler caches such as ccache." | ||
|
||
# shellcheck disable=1004,2016 | ||
echo ' | ||
___ ___ ___ _ __ ___ | ||
/ __|/ __/ _ \| |_ \/ __| | ||
\__ \ (_| (_) | | | \__ \ | ||
|___/\___\___/|_| |_|___/ | ||
' | ||
} | ||
|
||
main_pacman() { | ||
require_pacman scons | ||
} | ||
|
||
main_apt() { | ||
return 1 | ||
} | ||
|
||
main_brew() { | ||
return 1 | ||
} | ||
|
||
main() { | ||
return 0 | ||
} | ||
|
||
main_parham() { | ||
return 0 | ||
} |