Renommage du projet en 'Tamarin' + Ajout licence

This commit is contained in:
2015-07-02 14:04:14 +02:00
parent f286e6cff7
commit 66842a850c
11 changed files with 958 additions and 141 deletions

3
src-example/hello-world Executable file
View File

@ -0,0 +1,3 @@
#!/usr/bin/env bash
echo $1

View File

@ -0,0 +1,5 @@
#!/usr/bin/env bash
mkdir -p $DESTDIR/opt/hello-world
cp $SRCDIR/hello-world $DESTDIR/opt/hello-world/

17
src-example/tamarin.json Normal file
View File

@ -0,0 +1,17 @@
{
"name": "hello-world",
"dependencies": {
"debian:jessie": [
"apache2 (>= 2.4)",
"php5 (>= 5.4)"
]
},
"hooks": {
"preBuild": "./scripts/pre-build.sh",
"postBuild": "./scripts/post-build.sh",
"preInstall": "",
"preRemove": "",
"postInstall": "",
"postRemove": ""
}
}