~ubuntu-branches/debian/sid/gnome-color-chooser/sid

« back to all changes in this revision

Viewing changes to debian_create_deb.in

  • Committer: Bazaar Package Importer
  • Author(s): Werner Pantke
  • Date: 2008-09-09 11:46:25 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20080909114625-abbnpd1rhju2bi8i
Tags: 0.2.4-1
* new upstream release
  - license is now GNU GPL3+
  - strip down indirect dependencies by using LDFLAGS="-Wl,--as-needed"
    by default (if linker supports it)
* new homepage URL ( http://gnomecc.sourceforge.net ) (Closes: #493648)
* panel settings don't affect evolution's mail settings dialog anymore
  (LP: #219460)
* bumped Debian Policy Standards-Version to 3.8.0 (no changes needed)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/bin/bash
2
 
 
3
 
if [ $USER != "root" ]
4
 
then
5
 
        echo "Sorry, "$USER", but you're not root!";
6
 
        exit 1;
7
 
fi
8
 
 
9
 
echo 'Installing gnome-color-chooser..';
10
 
 
11
 
checkinstall    --pkgname="@PACKAGE@" \
12
 
                --pkgversion="@VERSION@" \
13
 
                --maintainer="@PACKAGE_BUGREPORT@" \
14
 
                --nodoc \
15
 
                --pkgsource="http://www.punk-ass-bitch.org/gnome-color-chooser/" \
16
 
                --default \
17
 
&& echo 'done' \