~lubuntu-dev/lubuntu-default-settings/trunk

« back to all changes in this revision

Viewing changes to debian/rules

  • Committer: Julien Lavergne
  • Date: 2009-09-05 20:04:28 UTC
  • Revision ID: julien.lavergne@gmail.com-20090905200428-76zc3v1x66vx58x1
Initial commit

------------- This line and the following will be ignored --------------

added:
  COPYING
  Makefile
  debian/
  debian/changelog
  debian/compat
  debian/control
  debian/copyright
  debian/rules
  etc/
  etc/xdg/
  etc/xdg/lxsession/
  etc/xdg/lxsession/Lubuntu/
  etc/xdg/lxsession/Lubuntu/autostart
  etc/xdg/lxsession/Lubuntu/config
  usr/
  usr/bin/
  usr/bin/lubuntu-logout
  usr/bin/openbox-lubuntu
  usr/bin/startlubuntu
  usr/share/
  usr/share/applications/
  usr/share/applications/lubuntu-logout.desktop
  usr/share/applications/lubuntu-screenlock.desktop
  usr/share/lubuntu/
  usr/share/lubuntu/images/
  usr/share/lubuntu/images/logout-banner.png
  usr/share/lubuntu/images/lubuntu-logo.png
  usr/share/lubuntu/openbox/
  usr/share/lubuntu/openbox/menu.xml
  usr/share/lubuntu/openbox/rc.xml
  usr/share/lubuntu/pcmanfm/
  usr/share/lubuntu/pcmanfm/main.lubuntu
  usr/share/lubuntu/wallpapers/
  usr/share/lubuntu/wallpapers/lubuntu-bird-2-1024x768.jpg
  usr/share/lubuntu/wallpapers/lubuntu-bird-2-1280x1024.jpg
  usr/share/lubuntu/wallpapers/lubuntu-bird-2-1280x800.jpg
  usr/share/lxpanel/
  usr/share/lxpanel/profile/
  usr/share/lxpanel/profile/Lubuntu/
  usr/share/lxpanel/profile/Lubuntu/config
  usr/share/lxpanel/profile/Lubuntu/panels/
  usr/share/lxpanel/profile/Lubuntu/panels/panel
  usr/share/xsessions/
  usr/share/xsessions/Lubuntu.desktop

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/make -f
 
2
 
 
3
build: build-stamp
 
4
build-stamp:
 
5
        dh_testdir
 
6
        touch build-stamp
 
7
 
 
8
clean:
 
9
        dh_testdir
 
10
        dh_testroot
 
11
        rm -f build-stamp
 
12
        dh_clean
 
13
 
 
14
install: build
 
15
        dh_testdir
 
16
        dh_testroot
 
17
        dh_prep
 
18
        dh_installdirs
 
19
        $(MAKE) DESTDIR=$(CURDIR)/debian/lubuntu-default-settings
 
20
 
 
21
binary-indep: build install
 
22
        dh_testdir
 
23
        dh_testroot
 
24
        dh_installchangelogs
 
25
        dh_installdocs
 
26
        dh_compress
 
27
        dh_fixperms
 
28
        dh_installdeb
 
29
        dh_gencontrol
 
30
        dh_md5sums
 
31
        dh_builddeb
 
32
 
 
33
binary-arch: build install
 
34
 
 
35
binary: binary-indep binary-arch
 
36
.PHONY: build clean binary-indep binary-arch binary install