Sha256: c7542facb1ac058621302ae46b9f375e0c2281f901e2238ab185ac1bdf7ef89a
Contents?: true
Size: 442 Bytes
Versions: 97
Compression:
Stored size: 442 Bytes
Contents
#!/bin/bash # Install pcre2 wget ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre2-10.21.tar.bz2 tar -xjvf pcre2-10.21.tar.bz2 cd pcre2-10.21 && ./configure --prefix=/usr && make && sudo make install && cd - rm -r pcre2-10.21 # Insall ponyc echo "deb https://dl.bintray.com/pony-language/ponyc-debian pony-language main" | sudo tee -a /etc/apt/sources.list sudo apt-get update -q sudo apt-get install -y --force-yes ponyc-release
Version data entries
97 entries across 97 versions & 1 rubygems