This repository has been archived by the owner on Sep 29, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 374
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add example for a very simple C package
- Loading branch information
1 parent
4f18682
commit 98b7b9b
Showing
2 changed files
with
18 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,7 @@ | ||
#!/bin/bash | ||
|
||
make | ||
|
||
BIN=$PREFIX/bin | ||
mkdir $BIN | ||
cp filebin $BIN |
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,11 @@ | ||
package: | ||
name: filebin | ||
version: 1.0.0 | ||
|
||
test: | ||
commands: | ||
- filebin -v | ||
|
||
source: | ||
git_url: [email protected]:ilanschnell/filebin.git | ||
git_tag: 1.0.0 |