gmyth-stream/server/0.3/debian/rules
author renatofilho
Tue Aug 21 16:04:44 2007 +0100 (2007-08-21)
branchtrunk
changeset 815 7f290a3a34b1
permissions -rwxr-xr-x
[svn r821] created debian packages;\nImplemented server deamon;\n
renatofilho@815
     1
#!/usr/bin/make -f
renatofilho@815
     2
# -*- makefile -*-
renatofilho@815
     3
renatofilho@815
     4
# Uncomment this to turn on verbose mode.
renatofilho@815
     5
#export DH_VERBOSE=1
renatofilho@815
     6
renatofilho@815
     7
PYVER=2.5
renatofilho@815
     8
PYTHON=python$(PYVER)
renatofilho@815
     9
renatofilho@815
    10
PREFIX=debian/tmp
renatofilho@815
    11
renatofilho@815
    12
build: build-stamp
renatofilho@815
    13
renatofilho@815
    14
build-stamp:
renatofilho@815
    15
	touch build-stamp
renatofilho@815
    16
renatofilho@815
    17
clean:
renatofilho@815
    18
	dh_testdir
renatofilho@815
    19
	dh_testroot
renatofilho@815
    20
	rm -f build-stamp
renatofilho@815
    21
	dh_clean
renatofilho@815
    22
renatofilho@815
    23
install: build
renatofilho@815
    24
	dh_testdir
renatofilho@815
    25
	dh_testroot
renatofilho@815
    26
	dh_installdirs
renatofilho@815
    27
	dh_clean -k
renatofilho@815
    28
renatofilho@815
    29
	@rm -rf build
renatofilho@815
    30
	@$(PYTHON) setup.py install --prefix=$(PREFIX)/usr --no-compile --install-purelib=$(PREFIX)/usr/share/gms
renatofilho@815
    31
	install -D -o root -g root -m 755 $(PREFIX)/usr/etc/init.d/gmsd  debian/$(cdbs_curpkg)/etc/init.d/gmsd
renatofilho@815
    32
	install -D -o root -g root -m 755 $(PREFIX)/usr/etc/gms/server.conf  debian/$(cdbs_curpkg)/etc/gms/server.conf
renatofilho@815
    33
renatofilho@815
    34
	dh_install
renatofilho@815
    35
renatofilho@815
    36
# Build architecture-independent files here.
renatofilho@815
    37
binary-indep: build install
renatofilho@815
    38
	dh_testdir
renatofilho@815
    39
	dh_testroot
renatofilho@815
    40
	dh_installchangelogs
renatofilho@815
    41
	dh_installdocs
renatofilho@815
    42
	dh_strip
renatofilho@815
    43
	dh_compress
renatofilho@815
    44
	dh_fixperms
renatofilho@815
    45
	dh_installdeb
renatofilho@815
    46
	dh_gencontrol
renatofilho@815
    47
	dh_md5sums
renatofilho@815
    48
	dh_builddeb
renatofilho@815
    49
renatofilho@815
    50
binary: binary-indep
renatofilho@815
    51
.PHONY: clean binary-indep binary install
renatofilho@815
    52