pkg(dash-0.5.11): Add dash 0.5.11

This commit is contained in:
Vargas, Dan 2021-03-16 18:47:35 -05:00 committed by Thomas
parent 76e0f7d76a
commit 9462caa94f
5 changed files with 34 additions and 0 deletions

19
packages/dash/0.5.11/build.sh vendored Executable file
View File

@ -0,0 +1,19 @@
#!/usr/bin/env bash
# Put instructions to build your package in here
PREFIX=$(realpath $(dirname $0))
mkdir -p build
cd build
curl "http://gondor.apana.org.au/~herbert/dash/files/dash-0.5.11.tar.gz" -o dash.tar.gz
tar xzf dash.tar.gz --strip-components=1
./configure --prefix "$PREFIX" &&
make -j$(nproc) &&
make install -j$(nproc)
cd ../
rm -rf build

4
packages/dash/0.5.11/environment vendored Normal file
View File

@ -0,0 +1,4 @@
#!/usr/bin/env bash
# Put 'export' statements here for environment variables
export PATH=$PWD/bin:$PATH

6
packages/dash/0.5.11/metadata.json vendored Normal file
View File

@ -0,0 +1,6 @@
{
"language": "dash",
"version": "0.5.11",
"aliases": ["dash"],
"author": "Dan Vargas <danvargas46@gmail.com>"
}

4
packages/dash/0.5.11/run vendored Normal file
View File

@ -0,0 +1,4 @@
#!/usr/bin/env bash
# Put instructions to run the runtime
dash "$@"

1
packages/dash/0.5.11/test.dash vendored Normal file
View File

@ -0,0 +1 @@
echo "OK"