-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
dd5b7ae
commit 5385e6f
Showing
11 changed files
with
99 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
FROM debian:sid | ||
|
||
ENV LANG=C.UTF-8 \ | ||
LC_ALL=C.UTF-8 \ | ||
TERM=xterm \ | ||
PANDOC=2.9.2 \ | ||
RAKUDO=2020.02.1 | ||
|
||
|
||
ENV PATH=$PATH:/usr/share/perl6/site/bin | ||
|
||
LABEL maintainer="Dr Suman Khanal <[email protected]>" | ||
|
||
RUN buildDeps="gcc \ | ||
libc6-dev \ | ||
libencode-perl \ | ||
wget \ | ||
make" \ | ||
&& apt-get update && apt-get install -y --no-install-recommends $buildDeps \ | ||
&& apt-get install -y git nano curl \ | ||
&& rm -rf /var/lib/apt/lists/* \ | ||
&& mkdir rakudo \ | ||
&& wget -O rakudo.tar.gz https://github.com/rakudo/rakudo/releases/download/${RAKUDO}/rakudo-${RAKUDO}.tar.gz \ | ||
&& tar xzf rakudo.tar.gz --strip-components=1 -C rakudo \ | ||
&& ( \ | ||
cd rakudo \ | ||
&& perl Configure.pl --prefix=/usr --gen-moar --backends=moar --relocatable \ | ||
&& make && make install \ | ||
) \ | ||
&& rm -rf rakudo rakudo.tar.gz \ | ||
&& git clone -b master --single-branch https://github.com/ugexe/zef.git \ | ||
&& cd zef \ | ||
&& raku -I. bin/zef install . && cd .. && rm -rf zef \ | ||
&& zef install Linenoise App::Mi6 App::Prove6 \ | ||
&& wget https://github.com/jgm/pandoc/releases/download/${PANDOC}/pandoc-${PANDOC}-1-amd64.deb \ | ||
&& dpkg -i pandoc-${PANDOC}-1-amd64.deb && rm pandoc-${PANDOC}-1-amd64.deb \ | ||
&& apt-get purge -y --auto-remove $buildDeps | ||
|
||
|
||
#--no-install-recommends | ||
|
||
CMD ["raku", "--version"] |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
; Script generated by the Inno Setup Script Wizard. | ||
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES! | ||
|
||
#define MyAppName "rakudo-2020.02.1" | ||
#define MyAppVersion "0.1" | ||
#define MyAppPublisher "The Perl Foundation" | ||
#define MyAppURL "https://raku.org" | ||
|
||
[Setup] | ||
; NOTE: The value of AppId uniquely identifies this application. Do not use the same AppId value in installers for other applications. | ||
; (To generate a new GUID, click Tools | Generate GUID inside the IDE.) | ||
AppId={{B1AD0AB5-1539-4EE3-8C60-D78857F33AC5} | ||
AppName={#MyAppName} | ||
AppVersion={#MyAppVersion} | ||
;AppVerName={#MyAppName} {#MyAppVersion} | ||
AppPublisher={#MyAppPublisher} | ||
AppPublisherURL={#MyAppURL} | ||
AppSupportURL={#MyAppURL} | ||
AppUpdatesURL={#MyAppURL} | ||
DefaultDirName={autopf}\{#MyAppName} | ||
DefaultGroupName={#MyAppName} | ||
LicenseFile=LICENSE.txt | ||
; Uncomment the following line to run in non administrative install mode (install for current user only.) | ||
;PrivilegesRequired=lowest | ||
PrivilegesRequiredOverridesAllowed=dialog | ||
OutputDir=. | ||
OutputBaseFilename=rakudo-2020.02.1-x86_64(JIT) | ||
;VersionInfoVersion=2020.0.0.1 | ||
;VersionInfoDescription=Supports Raku 6.d | ||
SetupIconFile=Camelia.ico | ||
Compression=lzma | ||
SolidCompression=yes | ||
ArchitecturesAllowed=x64 | ||
ArchitecturesInstallIn64BitMode=x64 | ||
DisableReadyPage=yes | ||
WizardStyle=modern | ||
|
||
[Languages] | ||
Name: "english"; MessagesFile: "compiler:Default.isl" | ||
|
||
[Messages] | ||
OnlyOnTheseArchitectures=The 64-bit installer cannot be used on 32-bit Windows. | ||
|
||
[Files] | ||
Source: "C:\projects\rakudo\rakudo-old\*"; DestDir: "{app}"; Flags: ignoreversion recursesubdirs createallsubdirs | ||
; NOTE: Don't use "Flags: ignoreversion" on any shared system files | ||
|
||
[Icons] | ||
Name: "{group}\{cm:UninstallProgram,{#MyAppName}}"; Filename: "{uninstallexe}"; IconFilename: {sys}\Shell32.dll; IconIndex: 31 | ||
|
File renamed without changes.