pkg(lolcode-0.11.2): Shift to cmake/make rather then running install.py

This commit is contained in:
Shivansh-007 2021-03-19 03:55:25 +05:30 committed by GitHub
parent 7744eea459
commit 228880ba9b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 2 deletions

View File

@ -7,7 +7,9 @@ git clone https://github.com/justinmeza/lci.git lolcode
cd lolcode
# Building and installing lolcode
./install.py --prefix="$PREFIX"
cmake -DCMAKE_INSTALL_PREFIX:STRING="$PREFIX" .
make -j$(nproc)
make install -j$(nproc)
# Cleaning up
cd ../ && rm -rf lolcode
cd ../ && rm -rf lolcode