Skip to content

Commit

Permalink
build: add install scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
atennert committed Nov 16, 2020
1 parent 6b3caa5 commit 72ad4fc
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 0 deletions.
21 changes: 21 additions & 0 deletions install.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
#!/bin/bash

echo ""
echo "=========================================="
echo "lcarsde application starter installation"
echo "=========================================="
echo ""
echo "This program requires:"
echo "* Python 3.8"
echo "* Python 3 PyGObject"
echo "* Python pycairo"
echo "* Python numpy"
echo "* Python pyalsaaudio"
echo "* Alsa audio for audio widgets"
echo ""


cp ./src/lcarsde-status-bar.py /usr/bin/lcarsde-status-bar.py
cp -R ./resources/etc/* /etc/

pip install ./src
10 changes: 10 additions & 0 deletions src/setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
from setuptools import setup

setup(
name='lcarsde',
version='0.1',
description='lcarsde python resource lib',
author='Andreas Tennert',
author_email='[email protected]',
packages=['lcarsde'] #same as name
)

0 comments on commit 72ad4fc

Please sign in to comment.