~ubuntu-branches/ubuntu/utopic/system-config-kickstart/utopic

« back to all changes in this revision

Viewing changes to debian/rules

  • Committer: Bazaar Package Importer
  • Author(s): Colin Watson
  • Date: 2005-04-04 15:16:36 UTC
  • Revision ID: james.westby@ubuntu.com-20050404151636-gn0gdb1guqohkdcs
Tags: 2.5.20-0ubuntu10
* Add basic package group selection, just ubuntu-desktop and
  kubuntu-desktop for now (closes: #8467).
* Make "Install Everything" checkbox invisible.
* Replace gtk.FALSE and gtk.TRUE with False and True respectively.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#! /usr/bin/make -f
 
2
 
 
3
PACKAGE := system-config-kickstart
 
4
 
 
5
build:
 
6
        $(MAKE) $(PACKAGE).desktop
 
7
 
 
8
clean:
 
9
        dh_testdir
 
10
        dh_testroot
 
11
        -rm -f po/*.mo
 
12
        -$(MAKE) clean
 
13
        dh_clean
 
14
 
 
15
install:
 
16
        dh_testdir
 
17
        dh_testroot
 
18
        dh_clean -k
 
19
        dh_installdirs
 
20
        $(MAKE) install RPM_BUILD_ROOT=$(CURDIR)/debian/$(PACKAGE) INSTROOT=$(CURDIR)/debian/$(PACKAGE)
 
21
 
 
22
binary-arch:
 
23
 
 
24
binary-indep: build install
 
25
        dh_testdir
 
26
        dh_testroot
 
27
        dh_installdocs
 
28
        dh_installchangelogs
 
29
        dh_desktop
 
30
        dh_python
 
31
        dh_compress
 
32
        dh_fixperms
 
33
        dh_installdeb
 
34
        dh_gencontrol
 
35
        dh_md5sums
 
36
        dh_builddeb
 
37
 
 
38
binary: binary-arch binary-indep
 
39
 
 
40
.PHONY: build clean install binary-arch binary-indep binary