File: install.py

package info (click to toggle)
albatross 1.36-5.4
  • links: PTS
  • area: main
  • in suites: squeeze, wheezy
  • size: 2,472 kB
  • ctags: 1,822
  • sloc: python: 7,437; makefile: 148; sh: 132
file content (11 lines) | stat: -rw-r--r-- 245 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
import sys
sys.path.insert(0, '..')
import install
from install import Installer

i = Installer('alsamp/mpperf', apache = 1)
i.add_exec('mpperf.py')
i.add_module('main.py')
i.add_html('main.html')
i.add_data('htaccess', '.htaccess')
i.install()