Moved *.py files to src/

git-svn-id: file:///home/anna/Desktop/ocarina-legacy/mithos/ocarina@27 1daee41c-8060-4895-b1f0-2197c00d777a
This commit is contained in:
bjschuma 2009-06-27 00:49:33 +00:00
parent 9b9fe546ed
commit c8dd47719e
11 changed files with 17 additions and 6 deletions

View File

@ -1,12 +1,13 @@
open:
geany *.py &
geany src/*.py &
clean:
rm -rf *.pyc
rm -rf src/*.pyc
install:
rsync *.py ~/bin/ocarina-bin/
rsync src/ ~/bin/ocarina-bin/
# rsync *.py ~/bin/ocarina-bin/
cp ocarina ~/bin/ocarina-bin/
rm ~/bin/ocarina
ln -s /home/bjschuma/bin/ocarina-bin/ocarina /home/bjschuma/bin/ocarina

View File

@ -1,3 +1,13 @@
#!/bin/bash
cd ~/bin/ocarina-bin
/usr/bin/python ocarina.py $@
#!/bin/sh
######## CONFIGURATION OPTIONS ########
#PROGRAM_DIR="/home/username/apps/exaile" # insert full path to Exaile bin dir
#######################################
# get the app dir if not already defined
if [ -z "$PROGRAM_DIR" ]; then
PROGRAM_DIR=`dirname "$0"`
fi
cd ${PROGRAM_DIR}
exec python -O src/ocarina.py "$@"