pkg(mono-6.12.0): relocate files

This commit is contained in:
Thomas Hobson 2021-03-13 19:53:00 +13:00
parent 7b4e072154
commit 509013f4a0
No known key found for this signature in database
GPG key ID: 9F1FD9D87950DB6F
6 changed files with 43 additions and 0 deletions

19
packages/mono/6.12.0/build.sh vendored Executable file
View file

@ -0,0 +1,19 @@
#!/bin/bash
PREFIX=$(realpath $(dirname $0))
mkdir -p build/mono
cd build
curl "https://download.mono-project.com/sources/mono/mono-6.12.0.122.tar.xz" -o mono.tar.xz
tar xf mono.tar.xz --strip-components=1 -C mono
cd mono
./configure --prefix "$PREFIX"
make -j$(nproc)
make install -j$(nproc)
cd ../../
rm -rf build