mirror of
https://github.com/c9moser/sgbackup.git
synced 2026-01-19 19:40:13 +00:00
20 lines
395 B
Bash
20 lines
395 B
Bash
#!/bin/bash
|
|
# vim: syn=sh ts=4 sts=4 sw=4 smartindent expandtab ff=unix
|
|
|
|
SELF="$( realpath "$0" )"
|
|
PROJECT_DIR="$( dirname "$SELF")"
|
|
|
|
PACKAGES="gtk4 gobject-introspection python-gobject python-rapidfuzz"
|
|
|
|
_install_pkg=""
|
|
for i in $PACKAGES; do
|
|
_install_pkg="${_install_pkg} ${MINGW_PACKAGE_PREFIX}-$i"
|
|
done
|
|
|
|
pacman -Sy
|
|
pacman -S --noconfirm $_install_pkg
|
|
|
|
cd $PROJECT_DIR
|
|
pip install --user .
|
|
|