diff --git a/packages/pure/0.68.0/build.sh b/packages/pure/0.68.0/build.sh new file mode 100755 index 0000000..8acb9a2 --- /dev/null +++ b/packages/pure/0.68.0/build.sh @@ -0,0 +1,33 @@ +#!/usr/bin/env bash + +PREFIX=$(realpath $(dirname $0)) + +# Python is available in the container as 'python3' and 'python2', not as 'python' +alias python=python3 + +# Installing LLVM and clang (the latter is optional but recommended) +curl -OL "http://llvm.org/releases/3.4/llvm-3.4.src.tar.gz" +curl -OL "http://llvm.org/releases/3.4/clang-3.4.src.tar.gz" +tar xfz llvm-3.4.src.tar.gz +tar xfz clang-3.4.src.tar.gz + +mv clang-3.4 llvm-3.4/tools/clang +# Cleaning up gzip files. +rm llvm-3.4.src.tar.gz && rm clang-3.4.src.tar.gz +cd llvm-3.4 + +# Building and installing - LLVM and clang +./configure --prefix="$PREFIX" --enable-optimized --enable-targets=host-only --enable-docs="no" --enable-assertions="no" +make -j$(nproc) +make install -j$(nproc) + +# Installing Pure +curl -sSLO "https://github.com/agraef/pure-lang/releases/download/pure-0.68/pure-0.68.tar.gz" +tar xfz pure-0.68.tar.gz +rm pure-0.68.tar.gz +cd pure-0.68 + +# Building and installing pure-lang +./configure --prefix="$PREFIX" --enable-release --with-tool-prefix="$PREFIX/bin" --with-static-llvm +make -j$(nproc) +make install -j$(nproc) diff --git a/packages/pure/0.68.0/environment b/packages/pure/0.68.0/environment new file mode 100644 index 0000000..73cb42f --- /dev/null +++ b/packages/pure/0.68.0/environment @@ -0,0 +1,5 @@ +#!/usr/bin/env bash + +# Put 'export' statements here for environment variables +export PATH=$PWD/bin:$PATH +export LD_LIBRARY_PATH=$PWD/lib diff --git a/packages/pure/0.68.0/metadata.json b/packages/pure/0.68.0/metadata.json new file mode 100644 index 0000000..3aadcc9 --- /dev/null +++ b/packages/pure/0.68.0/metadata.json @@ -0,0 +1,6 @@ +{ + "language": "pure", + "version": "0.68.0", + "author": "Shivansh-007 ", + "aliases": [] +} diff --git a/packages/pure/0.68.0/run b/packages/pure/0.68.0/run new file mode 100644 index 0000000..3b29e6a --- /dev/null +++ b/packages/pure/0.68.0/run @@ -0,0 +1,4 @@ +#!/usr/bin/env bash + +# Put instructions to run the runtime +pure "$@" diff --git a/packages/pure/0.68.0/test.pure b/packages/pure/0.68.0/test.pure new file mode 100644 index 0000000..88aabf8 --- /dev/null +++ b/packages/pure/0.68.0/test.pure @@ -0,0 +1,2 @@ +using system; +puts "OK"; \ No newline at end of file