blob: fa3eba315758a6e78f0c3f3301c269cfaf197ae1 (
plain)
1 # Description: Python AIML Interpreter.
2 # URL: http://pyaiml.sourceforge.net/
3 # Maintainer: unmaintained
4 # Packager: James Mills, prologic at shortcircuit dot net dot au
5 #
6 # Depends on: python
7
8 name=pyaiml
9 version=0.8.5
10 release=2
11 source=(http://dl.sourceforge.net/sourceforge/$name/PyAIML-$version.tar.bz2)
12
13 build() {
14 cd PyAIML-$version
15 python setup.py install --root=$PKG
16 rm -rf $PKG/usr/Lib/
17 chown -R root:root $PKG
18 }
|