mirror of https://github.com/CIRCL/AIL-framework
install scripts: use multiple cpu cores for builds
parent
3d3b4d6da2
commit
1a3b5d24fc
|
@ -45,7 +45,7 @@ git submodule update --init
|
||||||
test ! -d redis/ && git clone https://github.com/antirez/redis.git
|
test ! -d redis/ && git clone https://github.com/antirez/redis.git
|
||||||
pushd redis/
|
pushd redis/
|
||||||
git checkout 5.0
|
git checkout 5.0
|
||||||
make
|
make -j
|
||||||
popd
|
popd
|
||||||
|
|
||||||
# Faup
|
# Faup
|
||||||
|
@ -53,7 +53,7 @@ test ! -d faup/ && git clone https://github.com/stricaud/faup.git
|
||||||
pushd faup/
|
pushd faup/
|
||||||
test ! -d build && mkdir build
|
test ! -d build && mkdir build
|
||||||
cd build
|
cd build
|
||||||
cmake .. && make
|
cmake .. && make -j
|
||||||
sudo make install
|
sudo make install
|
||||||
echo '/usr/local/lib' | sudo tee -a /etc/ld.so.conf.d/faup.conf
|
echo '/usr/local/lib' | sudo tee -a /etc/ld.so.conf.d/faup.conf
|
||||||
sudo ldconfig
|
sudo ldconfig
|
||||||
|
@ -74,7 +74,7 @@ test ! -d pgpdump && git clone https://github.com/kazu-yamamoto/pgpdump.git
|
||||||
pushd pgpdump/
|
pushd pgpdump/
|
||||||
autoreconf -fiW all
|
autoreconf -fiW all
|
||||||
./configure
|
./configure
|
||||||
make
|
make -j
|
||||||
sudo make install
|
sudo make install
|
||||||
popd
|
popd
|
||||||
|
|
||||||
|
|
|
@ -95,7 +95,7 @@ unzip temp/yara.zip -d temp/
|
||||||
pushd temp/yara-${YARA_VERSION}
|
pushd temp/yara-${YARA_VERSION}
|
||||||
./bootstrap.sh
|
./bootstrap.sh
|
||||||
./configure
|
./configure
|
||||||
make
|
make -j
|
||||||
sudo make install
|
sudo make install
|
||||||
make check
|
make check
|
||||||
popd
|
popd
|
||||||
|
|
Loading…
Reference in New Issue