Install perl6 instead of the painful-to-install python3+fstrings
This commit is contained in:
parent
20a51381bc
commit
ab8274eae2
@ -22,8 +22,7 @@ echo "Installing dependencies.."
|
||||
if [ -n "`uname -a | grep -i arch`" ]
|
||||
then
|
||||
sudo pacman -Sy --noconfirm \
|
||||
python \
|
||||
python-pip \
|
||||
rakudo \
|
||||
make \
|
||||
m4 \
|
||||
gcc \
|
||||
@ -36,8 +35,7 @@ fi
|
||||
if [ -n "`uname -a | grep -i ubuntu`" ]
|
||||
then
|
||||
sudo apt-get install -y make \
|
||||
python3 \
|
||||
python3-pip \
|
||||
perl6 \
|
||||
make \
|
||||
m4 \
|
||||
gcc \
|
||||
@ -47,8 +45,6 @@ sudo apt-get install -y make \
|
||||
curl
|
||||
fi
|
||||
|
||||
pip3 install future-fstrings
|
||||
|
||||
if [ -n "`uname -a | grep -i ubuntu`" ]
|
||||
then
|
||||
echo "ubuntu"
|
||||
|
@ -7,8 +7,7 @@ if [ $ID = arch ]
|
||||
then
|
||||
pacman -Sy
|
||||
sudo pacman -S --noconfirm \
|
||||
python \
|
||||
python-pip \
|
||||
rakudo \
|
||||
libevdev \
|
||||
perl \
|
||||
pkg-config \
|
||||
@ -23,8 +22,7 @@ then
|
||||
else
|
||||
apt-get update -qq
|
||||
apt-get -y -qq install \
|
||||
python3 \
|
||||
python3-pip \
|
||||
perl6 \
|
||||
libev-dev \
|
||||
perl \
|
||||
pkg-config \
|
||||
@ -36,5 +34,3 @@ else
|
||||
rsync \
|
||||
git
|
||||
fi
|
||||
|
||||
pip3 install future-fstrings
|
||||
|
@ -4,4 +4,4 @@ Build & test with:
|
||||
|
||||
Run with
|
||||
|
||||
python3 ./generator.py
|
||||
perl6 ./generator.raku amodule.ml
|
||||
|
@ -1,7 +1,6 @@
|
||||
#!/usr/bin/env perl6
|
||||
use strict;
|
||||
use v6;
|
||||
use v6.c;
|
||||
use strict;
|
||||
use worries;
|
||||
|
||||
my $moduleName = @*ARGS[0].subst(/\.ml$/, '').samecase("A_");
|
||||
|
@ -21,8 +21,7 @@ FROM node:12-buster
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
RUN apt-get update && apt-get -y install python3 python3-pip libev-dev perl pkg-config libgmp-dev libhidapi-dev m4 libcap-dev bubblewrap rsync
|
||||
RUN pip3 install future-fstrings
|
||||
RUN apt-get update && apt-get -y install perl6 libev-dev perl pkg-config libgmp-dev libhidapi-dev m4 libcap-dev bubblewrap rsync
|
||||
|
||||
COPY ligo_deb10.deb /tmp/ligo_deb10.deb
|
||||
RUN dpkg -i /tmp/ligo_deb10.deb && rm /tmp/ligo_deb10.deb
|
||||
|
Loading…
Reference in New Issue
Block a user