f08d105beea7b4af5ffb881f191d75bc59a6cdf7
root Initial commit

root authored 12 years ago

1) #!/usr/bin/make -f
2) # -*- makefile -*-
3) 
4) # Uncomment this to turn on verbose mode.
5) #export DH_VERBOSE=1
6) 
7) 
8) 
9) 
10) 
11) configure: configure-stamp
12) configure-stamp:
13) 	dh_testdir
14) 	# Add here commands to configure the package.
15) 
16) 	touch configure-stamp
17) 
18) 
19) build: build-stamp
20) 
21) build-stamp: configure-stamp  
22) 	dh_testdir
23) 
24) 	# Add here commands to compile the package.
25) 	cd $(CURDIR) && ./autogen.sh
26) 	cd $(CURDIR) && $(MAKE)
27) 
28) 	touch $@
29) 
30) clean: 
31) 	dh_testdir
32) 	dh_testroot
33) 	rm -f build-stamp configure-stamp
34) 
35) 	# Add here commands to clean up after the build process.
36) 	cd $(CURDIR) && $(MAKE) clean
37) 
38) 	dh_clean 
39) 
40) install: build
41) 	dh_testdir
42) 	dh_testroot
43) 	dh_clean -k 
44) 	dh_installdirs
45) 
46) 	# Add here commands to install the package into debian/wifidog-gateway.
47) 	cp $(CURDIR)/wifidog.conf $(CURDIR)/debian/wifidog-gateway/etc
48) 	cp $(CURDIR)/wifidog-msg.html $(CURDIR)/debian/wifidog-gateway/etc
49) 
50) 	cp $(CURDIR)/src/wdctl $(CURDIR)/debian/wifidog-gateway/usr/bin
Benjamin Renard Fix wifidog bin src path

Benjamin Renard authored 12 years ago

51) 	cp $(CURDIR)/src/.libs/wifidog $(CURDIR)/debian/wifidog-gateway/usr/bin
root Initial commit

root authored 12 years ago

52) 
53) 	cp $(CURDIR)/libhttpd/httpd.h $(CURDIR)/debian/wifidog-gateway/usr/include/wifidog
54) 
55) 	cp $(CURDIR)/libhttpd/.libs/libhttpd.a $(CURDIR)/debian/wifidog-gateway/usr/lib
56) 	cp $(CURDIR)/libhttpd/.libs/libhttpd.la $(CURDIR)/debian/wifidog-gateway/usr/lib
57) 	cp $(CURDIR)/libhttpd/.libs/libhttpd.so.0.0.0 $(CURDIR)/debian/wifidog-gateway/usr/lib
58) 	ln -s libhttpd.so.0.0.0 $(CURDIR)/debian/wifidog-gateway/usr/lib/libhttpd.so.0
59) 	ln -s libhttpd.so.0.0.0 $(CURDIR)/debian/wifidog-gateway/usr/lib/libhttpd.so
60) 
61) 
62) # Build architecture-independent files here.
63) binary-indep: build install
64) # We have nothing to do by default.
65) 
66) # Build architecture-dependent files here.
67) binary-arch: build install
68) 	dh_testdir
69) 	dh_testroot
70) 	dh_installchangelogs ChangeLog
71) 	dh_installdocs
72) 	dh_installexamples
73) #	dh_install
74) #	dh_installmenu
75) #	dh_installdebconf	
76) #	dh_installlogrotate
77) #	dh_installemacsen
78) #	dh_installpam
79) #	dh_installmime
80) #	dh_python
Benjamin Renard Release svn.r1461-2

Benjamin Renard authored 12 years ago

81) 	dh_installinit