view debian/rules @ 889:32808e442d93
Geometrical core improvement: ignore cores, owned by one SS element
* add argument ignore_one_ss to geometrical_cores() method (=True)
* add argument ignore_one_ss to other methods of structure,
calling geometrical_cores() (=True)
* add command line option to blocks3d, geometrical_core, pair_cores (=False)
* remove xyz_only=True from pair_cores, since secondary structure determiner
needs structures to be loaded
This have not been tested!
close #119
author |
Boris Nagaev <bnagaev@gmail.com> |
date |
Sun, 18 Sep 2011 16:32:59 +0400 |
parents |
2b74596f3c64 |
children |
|
line source
3 DEB_AUTO_UPDATE_DEBIAN_CONTROL = yes
4 DEB_PYTHON_SYSTEM = pysupport
5 DEB_COMPRESS_EXCLUDE = .py
6 DEB_PYTHON_MODULE_PACKAGES = $
(filter-out blocks3d-wt, $
(DEB_PACKAGES))
8 include /usr/share/cdbs/1
/rules/debhelper.mk
9 include /usr/share/cdbs/1
/class/python-distutils.mk
14 build/geometrical-core2::
16 fix_path='import sys\nsys.path.append("/usr/share/geometrical-core2")'; \
17 cat geometrical_core/geometrical-core \
18 | sed "1 { x; s@^@\n$${fix_path}\n@; x }; /^$$/ x" \
19 > debian/bin/geometrical-core2
20 chmod +x debian/bin/geometrical-core2
25 # Manually build blocks3d-wt to avoid build-dependency on qmake
27 b3dwt_cpp = $
(wildcard $
(b3dwt)/*.C)
28 b3dwt_o = $
(b3dwt_cpp:.C=.o)
29 b3dwt_exe = $
(b3dwt)/blocks3d-wt
33 build/blocks3d-wt:: $
(b3dwt_exe) debian/.dep
34 make blocks3d-wt blocks3d-www
36 $
(b3dwt_exe): $
(b3dwt_o)
37 $
(CC) -o $
@ $^
-lwt -lwtfcgi -lboost_signals -O3
45 debian/.dep: $
(b3dwt_cpp)