root/trunk/fink/main/finkinfo/pyrex-py.info

Revision 169, 1.6 kB (checked in by broder, 15 years ago)

Add an upated Pyrex to MacAthena until upstream Fink takes it.

Line 
1 Info2: <<
2 Package: pyrex-py%type_pkg[python]
3 Version: 0.9.8.5
4 Revision: 1
5 Distribution: (%type_pkg[python] = 23) 10.3, (%type_pkg[python] = 23) 10.4
6 Type: python (2.3 2.4 2.5)
7 License: BSD
8 Maintainer: Evan Broder <ebroder@ebroder.net>
9 Depends: python%type_pkg[python]
10 Source: http://www.cosc.canterbury.ac.nz/~greg/python/Pyrex/Pyrex-%v.tar.gz
11 Source-MD5: 3b3d8397c2c9a58fc59a90e2b49c651a
12 Homepage: http://www.cosc.canterbury.ac.nz/~greg/python/Pyrex/
13 CompileScript: <<
14  %p/bin/python%type_raw[python] setup.py build
15 <<
16 InstallScript: <<
17  #!/bin/bash -ev
18  %p/bin/python%type_raw[python] setup.py install --root=%d
19  mkdir -p %i/share/doc/%n
20  cp -R Doc %i/share/doc/%n/
21  cp -R Demos %i/share/doc/%n/
22  mv %i/bin/pyrexc %i/bin/pyrexc-py%type_pkg[python]
23 <<
24 DocFiles: CHANGES.txt INSTALL.txt ToDo.txt README.txt USAGE.txt
25 PostInstScript: <<
26  update-alternatives --install %p/bin/pyrexc pyrexc %p/bin/pyrexc-py%type_pkg[python] %type_pkg[python]
27 <<
28 PreRmScript: <<
29  if [ $1 != "upgrade" ]; then
30   update-alternatives --remove pyrexc %p/bin/pyrexc-py%type_pkg[python]
31  fi
32 <<
33 Description: Tool to make writing Python modules easy
34 DescDetail: <<
35  Pyrex is a language specially designed for writing Python extension
36  modules. It's designed to bridge the gap between the nice, high-level,
37  easy-to-use world of Python and the messy, low-level world of
38  C.  To use the pyrex compiler, type pyrexc at the prompt.
39  
40  Note: This package uses update-alternatives to allow pyrexc for different
41  versions of python to be installed simultaneously.  '%p/bin/pyrexc' will
42  always point to the highest installed version; use (e.g.) 'pyrexc-py23'
43  to choose others.
44 <<
45 <<
Note: See TracBrowser for help on using the browser.