mirror of
https://github.com/kuhyx/testsAndMisc.git
synced 2026-07-04 13:03:13 +02:00
13 lines
381 B
Bash
Executable File
13 lines
381 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -e
|
|
# Install dependencies
|
|
if command -v apt-get &>/dev/null; then
|
|
sudo apt-get install -y libcurl4-openssl-dev libxml2-dev
|
|
elif command -v pacman &>/dev/null; then
|
|
pacman -Q curl libxml2 &>/dev/null || sudo pacman -S --noconfirm curl libxml2
|
|
elif command -v dnf &>/dev/null; then
|
|
sudo dnf install -y libcurl-devel libxml2-devel
|
|
fi
|
|
make
|
|
./scrape
|