From 9bb7b437a8e7bac9304bdfcc2cbd354806126cc4 Mon Sep 17 00:00:00 2001 From: Dan Stowell Date: Fri, 4 Sep 2020 14:22:02 -0700 Subject: [PATCH] Revert "Create gnuapl.toml" --- languages/gnuapl.toml | 35 ----------------------------------- 1 file changed, 35 deletions(-) delete mode 100644 languages/gnuapl.toml diff --git a/languages/gnuapl.toml b/languages/gnuapl.toml deleted file mode 100644 index 704fcf84..00000000 --- a/languages/gnuapl.toml +++ /dev/null @@ -1,35 +0,0 @@ -name = "gapl" -entrypoint = "main.apl" -extensions = [ - "apl" -] -packages = [ - "liblapack-dev", - "gettext" -] -setup = [ - "cd /tmp", - "wget ftp://ftp.gnu.org/gnu/apl/apl-1.8.tar.gz", - "tar -xvf apl-1.8.tar.gz", - "cd apl-1.8", - "./configure", - "make", - "make install", - "cd src", - "mv apl /usr/bin/apl", - "cd ../..", - "rm -rf /tmp/*" -] - -[run] -command = [ - "bash", - "-c", - "apl --silent --noColor --noCIN --OFF -f main.apl" -] - -[tests] - - [tests.hello] - code = "'hello'" - output = "hello\n\n"