~free.ekanayaka/storm/any-expr

« back to all changes in this revision

Viewing changes to debian/rules

  • Committer: Jamu Kakar
  • Date: 2009-08-08 02:37:14 UTC
  • mfrom: (302.2.15 version-0.15)
  • Revision ID: jkakar@kakar.ca-20090808023714-ih4np8oao4xxuaiu
Tags: 0.15
Merged version-0.15 [trivial]

Storm has been updated to version 0.15.  The Debian package source
has been updated to build correctly on all supported releases of
Ubuntu.

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
build: build-stamp
12
12
build-stamp:
13
13
        dh_testdir
 
14
 
 
15
ifeq ($(use_pycentral),yes)
 
16
        for python_version in `pyversions -r`; \
 
17
                do $${python_version} setup.py build; \
 
18
        done
 
19
else
14
20
        python setup.py build
 
21
endif
15
22
        touch build-stamp
16
23
 
17
24
clean:
25
32
        dh_testdir
26
33
        dh_testroot
27
34
        dh_clean -k
 
35
 
 
36
ifeq ($(use_pycentral),yes)
 
37
        for python_version in `pyversions -r`; \
 
38
                do $${python_version} setup.py install --root $(root_dir); \
 
39
        done
 
40
else
28
41
        python setup.py install --root $(root_dir)
 
42
endif
29
43
 
30
44
binary-indep: build install
31
45