ec0175a343756638049846b92562e3cf1049c6ca
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) 
Benjamin Renard Add sysctl config file to p...

Benjamin Renard authored 11 years ago

50) 	cp $(CURDIR)/debian/wifidog-gateway.syctl $(CURDIR)/debian/wifidog-gateway/etc/sysctl.d
51) 
52) 	cp $(CURDIR)/wifidog-msg.html $(CURDIR)/debian/wifidog-gateway/etc
root Initial commit

root authored 12 years ago

53) 	cp $(CURDIR)/src/wdctl $(CURDIR)/debian/wifidog-gateway/usr/bin
Benjamin Renard Fix wifidog bin src path

Benjamin Renard authored 12 years ago

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

root authored 12 years ago

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

Benjamin Renard authored 11 years ago

79) 	dh_installlogrotate
root Initial commit

root authored 12 years ago

80) #	dh_installemacsen
81) #	dh_installpam
82) #	dh_installmime
83) #	dh_python
Benjamin Renard Release svn.r1461-2

Benjamin Renard authored 12 years ago

84) 	dh_installinit