master #8

Merged
hippoz merged 7 commits from Ohio2/repo:master into master 2021-07-07 23:01:13 +03:00
6 changed files with 33 additions and 0 deletions
Showing only changes of commit 2a0415b014 - Show all commits

8
clang/build Executable file
View file

@ -0,0 +1,8 @@
wget https://github.com/llvm/llvm-project/releases/download/llvmorg-12.0.0/clang+llvm-12.0.0-x86_64-linux-gnu-ubuntu-20.04.tar.xz
tar -xf clang+llvm-12.0.0-x86_64-linux-gnu-ubuntu-20.04.tar.xz
cd clang+llvm-12.0.0-x86_64-linux-gnu-ubuntu-20.04
cd OBJ_ROOT
cmake -G "Unix Makefiles" -DCMAKE_INSTALL_PREFIX="$1"/usr/bin
make -j`nproc`
make install DESTDIR="$1"

5
clang/package Executable file
View file

@ -0,0 +1,5 @@
pkg_config_deploy=true
pkg_config_ver="0.0.1"
pkg_config_name="clang"
pkg_config_makedepends="cmake ninja"
pkg_config_depends=""

6
cmake/build Executable file
View file

@ -0,0 +1,6 @@
wget https://github.com/Kitware/CMake/releases/download/v3.21.0-rc2/cmake-3.21.0-rc2.tar.gz
tar -xf cmake-3.21.0-rc2.tar.gz
cd cmake-3.21.0-rc2.tar.gz
./bootstrap
make
make install DESTDIR="$1"

5
cmake/package Executable file
View file

@ -0,0 +1,5 @@
pkg_config_deploy=true
pkg_config_ver="0.0.1"
pkg_config_name="cmake"
pkg_config_makedepends=""
pkg_config_depends=""

4
ninja/build Executable file
View file

@ -0,0 +1,4 @@
git clone https://github.com/ninja-build/ninja.git
cd ninja
./configure.py --bootstrap
mv ninja "$1"/usr/bin

5
ninja/package Executable file
View file

@ -0,0 +1,5 @@
pkg_config_deploy=true
pkg_config_ver="0.0.1"
pkg_config_name="ninja"
pkg_config_makedepends=""
pkg_config_depends=""