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