Statistics
| Branch: | Tag: | Revision:

root / debian / rules @ 35597033

History | View | Annotate | Download (500 Bytes)

1
#!/usr/bin/make -f
2

    
3
%:
4
	dh $@ --with python2
5

    
6
package=snf-cloudcms
7
static_dir=debian/$(package)/usr/share/synnefo/static/
8
package_static_dir=cloudcms/static/cloudcms/
9
resources_static_dir=cloudcmsresources/static/cloudcmsresources/
10

    
11
override_dh_auto_install:
12
	dh_auto_install
13
	
14
	mkdir -p $(static_dir)
15
	-mv $(package_static_dir) $(static_dir)
16

    
17
	mkdir -p $(static_dir)
18
	-mv $(resources_static_dir) $(static_dir)
19

    
20
	mkdir -p debian/$(package)/etc/synnefo
21
	-mv conf/*.conf debian/$(package)/etc/synnefo
22