forked from timsutton/brew-pkg
-
Notifications
You must be signed in to change notification settings - Fork 1
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
3 changed files
with
10 additions
and
10 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,20 +14,20 @@ brew install --verbose --HEAD metacall/brew-pkg/brew-pkg | |
# Test Python with dependencies, compress and custom output tarball name | ||
brew install [email protected] | ||
brew pkg --name python --with-deps --compress [email protected] | ||
test -f python.tgz | ||
test -f python.tar.gz | ||
test -f python.pkg | ||
# tar -ztvf python.tgz | ||
# tar -ztvf python.tar.gz | ||
|
||
brew pkg --name python-without-deps --compress [email protected] | ||
test -f python-without-deps.tgz | ||
test -f python-without-deps.tar.gz | ||
test -f python-without-deps.pkg | ||
# tar -ztvf python-without-deps.tgz | ||
# tar -ztvf python-without-deps.tar.gz | ||
|
||
brew install [email protected] | ||
brew pkg --name ruby-with-python --compress --relocatable --additional-deps [email protected] [email protected] | ||
test -f ruby-with-python.tgz | ||
test -f ruby-with-python.tar.gz | ||
test -f ruby-with-python.pkg | ||
# tar -ztvf ruby-with-python.tgz | ||
# tar -ztvf ruby-with-python.tar.gz | ||
|
||
# Debug files and sizes | ||
ls -lh |