File: dev_env.sh

package info (click to toggle)
gajim 2.4.2-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 17,496 kB
  • sloc: python: 79,966; sh: 591; xml: 67; makefile: 6
file content (23 lines) | stat: -rwxr-xr-x 492 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/env bash

set -e

DIR="$( cd "$( dirname "$0" )" && pwd )"
source "$DIR"/_base.sh

function main {
    pacman --noconfirm -S --needed \
        git \
        intltool \
        p7zip \
        wget \
        ${MINGW_PACKAGE_PREFIX}-python \
        ${MINGW_PACKAGE_PREFIX}-toolchain \
        ${MINGW_DEPS}

    pip3 install --upgrade precis-i18n
    pip3 install --upgrade $(echo "$PYTHON_REQUIREMENTS" | tr ["\\n"] [" "])
    pip3 install pygobject-stubs --no-cache-dir
}

main;