File: 1000-install-in-fhs-locations.patch

package info (click to toggle)
python-aiml 0.8.6-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch, wheezy
  • size: 232 kB
  • ctags: 152
  • sloc: python: 1,301; makefile: 9
file content (16 lines) | stat: -rw-r--r-- 413 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Description: Install in FHS-compliant directories. 
 For some reason, upstream installs in some odd directory. 
 Here, we correct that. 
Author: Luke Faraone <lfaraone@debian.org>

--- a/setup.py
+++ b/setup.py
@@ -2,7 +2,7 @@
 from distutils.core import setup
 import glob
 
-package_prefix = "Lib/site-packages/aiml"
+package_prefix = "share/pyshared/aiml"
 
 setup(name="PyAIML",
     version="0.8.6",