-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathBuild.rakumod
42 lines (36 loc) · 1.25 KB
/
Build.rakumod
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#! /usr/bin/env perl6
#Note `zef build .` will run this script
use v6;
class Build {
need LibraryMake;
# adapted from deprecated Native::Resources
#| Sets up a C<Makefile> and runs C<make>. C<$folder> should be
#| C<"$folder/resources/libraries"> and C<$libname> should be the name of the library
#| without any prefixes or extensions.
sub make(Str $folder, Str $destfolder, IO() :$libname!) {
my %vars = LibraryMake::get-vars($destfolder);
%vars<LIB_BASE> = $libname;
%vars<LIB_NAME> = ~ $*VM.platform-library-name($libname);
mkdir($destfolder);
LibraryMake::process-makefile($folder, %vars);
shell(%vars<MAKE>);
}
method build($workdir) {
if Rakudo::Internals.IS-WIN {
note "Using pre-built DLL on Windows";
}
else {
# DLLs are prebuilt on Windows. See 'build-libraries
# job in .github/workflows/test.yml
my $destdir = 'resources/libraries';
mkdir 'resources';
mkdir $destdir;
make($workdir, $destdir, :libname<base64>);
}
True;
}
}
# Build.rakumod can also be run standalone
sub MAIN(Str $working-directory = '.' ) {
Build.new.build($working-directory);
}