#!/usr/bin/make -f # -*- mode: makefile; coding: utf-8 -*- # Copyright (C) 2010 Julien Lavergne # Copyright (C) 2010 Justin B Rye # Copyright (C) 2010 Andrew Lee (李健秋) # Description: Main Debian packaging script for morituri # # 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, see . export DH_VERBOSE=1 #include /usr/share/cdbs/1/rules/utils.mk DISTRO = "$(shell lsb_release -si)" %: dh --with autoreconf $@ override_dh_auto_configure: #/usr/bin/autoreconf -fiv dh_auto_configure -- --enable-udisks --enable-gtk-doc override_dh_install: #Remove .la and .a files. find debian/tmp/usr/lib/ -name *.a |xargs rm find debian/tmp/usr/lib -name *.la |xargs rm dh_install --list-missing #Install apport hook only on Ubuntu ifeq ($(DISTRO),"Ubuntu") dh_install -plibfm0 debian/apport/source_libfm.py usr/share/apport/package-hooks endif override_dh_strip: dh_strip --dbg-package=libfm0-dbg override_dh_auto_test: #Don't do anything, tests didn't pass for now