diff options
author | Didier Roche <didrocks@ubuntu.com> | 2012-11-16 23:12:51 +0000 |
---|---|---|
committer | Tarmac <Unknown> | 2012-11-16 23:12:51 +0000 |
commit | 9c6b553f7b0f23b732824648b92dae4d622ca618 (patch) | |
tree | be6a177585c31e25b71087c0a477a18a8de8c15d /debian/rules | |
parent | 2893be94b74895718d829b2f22388ea607de0980 (diff) | |
parent | 233c3be5d119a4e58135b0a099901a93bc285c5d (diff) | |
download | ayatana-indicator-datetime-9c6b553f7b0f23b732824648b92dae4d622ca618.tar.gz ayatana-indicator-datetime-9c6b553f7b0f23b732824648b92dae4d622ca618.tar.bz2 ayatana-indicator-datetime-9c6b553f7b0f23b732824648b92dae4d622ca618.zip |
Inline package.
Approved by Charles Kerr.
Diffstat (limited to 'debian/rules')
-rwxr-xr-x | debian/rules | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..f98cf93 --- /dev/null +++ b/debian/rules @@ -0,0 +1,24 @@ +#!/usr/bin/make -f + +LDFLAGS += -Wl,-z,defs -Wl,--as-needed + +%: + dh $@ --with quilt,autoreconf + +override_dh_autoreconf: + NOCONFIGURE=1 dh_autoreconf ./autogen.sh + +override_dh_auto_configure: + dh_auto_configure -- --disable-static + +override_dh_install: + find debian/indicator-datetime -name \*.la -delete + find debian/indicator-datetime -name \*.a -delete + cd po; intltool-update --pot --verbose + dh_install --fail-missing + # Language packs + for d in $$(find debian/indicator-datetime -type f \( -name "*.desktop" -o -name "*.directory" \) ); do \ + sed -ri '/^(Name|GenericName|Comment|X-GNOME-FullName)\[/d' $$d; \ + echo "X-Ubuntu-Gettext-Domain=indicator-datetime" >> $$d; \ + done; + |