1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
|
#!/usr/bin/make -f
# Copyright 2003 Goedson Teixeira Paixao <goedson@debian.org>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License as
# published by the Free Software Foundation; either version 2, or (at
# your option) any later version.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
# 02111-1307 USA.
include /usr/share/cdbs/1/rules/debhelper.mk
include /usr/share/cdbs/1/class/autotools.mk
include /usr/share/cdbs/1/class/gnome.mk
CFLAGS+=`getconf LFS_CFLAGS`
DEB_CONFIGURE_EXTRA_FLAGS := --enable-libnotify
# Uncomment these lines and add dpatch to the build-depends in the
# control file in order to use dpatch to apply patches
include /usr/share/dpatch/dpatch.make
post-patches:: patch
clean:: unpatch
install/gnomebaker::
rm -rf debian/gnomebaker/usr/doc
# -mkdir -p debian/gnomebaker/usr/share/gnome/help/
# mv debian/gnomebaker/usr/share/gnomebaker/doc/gnomebaker debian/gnomebaker/usr/share/gnome/help
# rmdir debian/gnomebaker/usr/share/gnomebaker/doc
-mkdir -p debian/gnomebaker/usr/share/pixmaps
cp debian/gnomebaker.xpm debian/gnomebaker/usr/share/pixmaps
cp debian/gnomebaker/usr/share/gnomebaker/gnomebaker-48.png debian/gnomebaker/usr/share/pixmaps/gnomebaker.png
|