Renommage du projet en 'Tamarin' + Ajout licence
This commit is contained in:
3
src-example/hello-world
Executable file
3
src-example/hello-world
Executable file
@ -0,0 +1,3 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
echo $1
|
5
src-example/scripts/pre-build.sh
Executable file
5
src-example/scripts/pre-build.sh
Executable 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
17
src-example/tamarin.json
Normal 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": ""
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user