blob: 1c7214808a401f9cd5f1f0f82ca6aa937dfc517e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#!/usr/bin/env sh
#
# Install rainbowstream
# https://github.com/orakaro/rainbowstream
# Parameters
SHARE="$1"
LIB="$2"
# Include basic functions
. $LIB/trashman/functions || exit 1
. $LIB/trashman/debian || exit 1
# Requirements
trashman_apt_install_packages python-pip python-dev libjpeg-dev libfreetype6 libfreetype6-dev zlib1g-dev
# Install
pip install --user rainbowstream
|