pkg(pony-0.39.0): User proper installation instructions, like specified in the installation guide

This commit is contained in:
Shivansh-007 2021-03-31 22:24:34 +05:30
parent 8d972de264
commit 983a91adae

View file

@ -13,8 +13,12 @@ git submodule update --recursive --init
cd ponyc
# build
make -j$(nproc)
# Build the vendored LLVM libraries that are included in the `lib/llvm/src`.
make libs build_flags="-j$(nproc)"
# Configure the CMake build directory.
make configure
# Will build pony and put it in `build/release`.
make build
# Install pony into `$PREFIX`.
make prefix="$PREFIX" install