Gobligine/debian/rules
2011-08-08 22:08:32 +02:00

81 lines
3.5 KiB
Makefile
Executable file

#!/usr/bin/make -f
# _________ __ __
# / _____// |_____________ _/ |______ ____ __ __ ______
# \_____ \\ __\_ __ \__ \\ __\__ \ / ___\| | \/ ___/
# / \| | | | \// __ \| | / __ \_/ /_/ > | /\___ |
# /_______ /|__| |__| (____ /__| (____ /\___ /|____//____ >
# \/ \/ \//_____/ \/
# ______________________ ______________________
# T H E W A R B E G I N S
# Stratagus - A free fantasy real time strategy game engine
#
# debian/rules
# Copyright (C) 2010-2011 Pali Rohár <pali.rohar@gmail.com>
#
# 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 of the License, 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 <http://www.gnu.org/licenses/>.
#
#
MAEMO := $(shell if pkg-config maemo-version 1>/dev/null 2>&1 || test -f "/etc/maemo_version" || osso-product-info -q OSSO_PRODUCT_INFO_RELEASE_NAME 2>/dev/null | grep -q -i maemo; then echo YES; fi)
%:
dh $@
override_dh_auto_clean:
dh_auto_clean
dh_auto_clean --builddirectory=obj-$(DEB_BUILD_GNU_TYPE)-dbg
override_dh_auto_configure:
dh_auto_configure -- -DENABLE_DOC=ON -DENABLE_DEV=ON
dh_auto_configure --builddirectory=obj-$(DEB_BUILD_GNU_TYPE)-dbg -- -DCMAKE_BUILD_TYPE=Debug
override_dh_auto_build:
dh_auto_build
dh_auto_build --builddirectory=obj-$(DEB_BUILD_GNU_TYPE)-dbg
override_dh_install:
dh_install
dh_auto_install --builddirectory=obj-$(DEB_BUILD_GNU_TYPE)-dbg --destdir=debian/stratagus-dbg
rm -f debian/stratagus-dbg/usr/bin/png2stratagus debian/stratagus-dbg/usr/sbin/metaserver
convert src/win32/stratagus.ico debian/stratagus/usr/share/pixmaps/stratagus.png
override_dh_strip:
dh_strip --dbg-package=stratagus-dbg
ifdef MAEMO
override_dh_fixperms:
mkdir -p debian/stratagus/opt/stratagus/bin
mkdir -p debian/stratagus/opt/man/man6
mv debian/stratagus/usr/games/stratagus debian/stratagus/opt/stratagus/bin/
mv debian/stratagus/usr/share/man/man6/stratagus.6.gz debian/stratagus/opt/man/man6/
ln -s /opt/stratagus/bin/stratagus debian/stratagus/usr/games/stratagus
ln -s /opt/man/man6/stratagus.6.gz debian/stratagus/usr/share/man/man6/stratagus.6.gz
dh_fixperms
override_dh_gencontrol:
dh_gencontrol
cp debian/stratagus/DEBIAN/control debian/stratagus/DEBIAN/control.orig
sed -n -e "1,/^Depends:.*$$/p" -i debian/stratagus/DEBIAN/control
echo "Bugtracker: https://bugs.launchpad.net/stratagus" >> debian/stratagus/DEBIAN/control
echo "Maemo-Display-Name: Stratagus" >> debian/stratagus/DEBIAN/control
echo "Maemo-Icon-26:" >> debian/stratagus/DEBIAN/control
for line in $(shell convert src/win32/stratagus.ico -resize 48x48 png:- | uuencode -m - | tail -n +2 | head -n -1); do \
echo " $$line" >> debian/stratagus/DEBIAN/control; \
done
sed -n -e "/^Depends:.*$$/,\$$p" debian/stratagus/DEBIAN/control.orig | tail -n +2 >> debian/stratagus/DEBIAN/control
sed "s/Section: .*/Section: user\/games/" -i debian/stratagus/DEBIAN/control
rm -f debian/stratagus/DEBIAN/control.orig
endif