mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-23 00:02:38 -05:00
Run dh_icons & dh_desktop in rules git-svn-id: http://svn.osgeo.org/qgis/trunk@8148 c8812cc2-4d05-0410-92ff-de0c093fc19c
104 lines
2.4 KiB
Makefile
Executable File
104 lines
2.4 KiB
Makefile
Executable File
#!/usr/bin/make -f
|
|
# -*- makefile -*-
|
|
# Sample debian/rules that uses debhelper.
|
|
# GNU copyright 1997 to 1999 by Joey Hess.
|
|
|
|
# Uncomment this to turn on verbose mode.
|
|
#export DH_VERBOSE=1
|
|
|
|
include /usr/share/dpatch/dpatch.make
|
|
|
|
# These are used for cross-compiling and for saving the configure script
|
|
# from having to guess our platform (since we know it already)
|
|
DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
|
|
DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
|
|
|
|
|
|
CFLAGS = -Wall -g
|
|
|
|
ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
|
|
CFLAGS += -O0
|
|
else
|
|
CFLAGS += -O2
|
|
endif
|
|
ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS)))
|
|
INSTALL_PROGRAM += -s
|
|
endif
|
|
|
|
CMakeCache.txt: CMakeLists.txt
|
|
dh_testdir
|
|
# Add here commands to configure the package.
|
|
uudecode -o $(CURDIR)/src/plugins/georeferencer/pencil.png $(CURDIR)/debian/pencil.uu
|
|
cmake -D CMAKE_INSTALL_PREFIX=/usr \
|
|
.
|
|
|
|
build: patch build-stamp
|
|
|
|
build-stamp: CMakeCache.txt
|
|
dh_testdir
|
|
|
|
# Add here commands to compile the package.
|
|
$(MAKE)
|
|
|
|
touch build-stamp
|
|
|
|
clean: clean-patched unpatch
|
|
clean-patched:
|
|
dh_testdir
|
|
dh_testroot
|
|
rm -f build-stamp
|
|
rm -f i18n/*.qm
|
|
rm -rf debian/tmp
|
|
|
|
# Add here commands to clean up after the build process.
|
|
-$(MAKE) clean
|
|
|
|
rm -f CMakeCache.txt
|
|
rm -f $(CURDIR)/src/plugins/georeferencer/pencil.png
|
|
|
|
dh_clean
|
|
|
|
install: build
|
|
dh_testdir
|
|
dh_testroot
|
|
dh_clean -k
|
|
dh_installdirs
|
|
|
|
# Add here commands to install the package into debian/tmp.
|
|
$(MAKE) install DESTDIR=$(CURDIR)/debian/tmp
|
|
|
|
# Install menu pixmap
|
|
install -o root -g root -d $(CURDIR)/debian/tmp/usr/share/pixmaps
|
|
install -o root -g root -m 644 $(CURDIR)/debian/qgis-icon.png $(CURDIR)/debian/tmp/usr/share/pixmaps/qgis-icon.png
|
|
|
|
# Build architecture-independent files here.
|
|
binary-indep: build install
|
|
# We have nothing to do by default.
|
|
|
|
# Build architecture-dependent files here.
|
|
binary-arch: build install
|
|
dh_testdir
|
|
dh_testroot
|
|
dh_installchangelogs ChangeLog
|
|
dh_installdocs
|
|
dh_installexamples
|
|
dh_install --sourcedir=debian/tmp
|
|
dh_installmenu
|
|
dh_icons
|
|
dh_desktop
|
|
dh_installman -pqgis debian/gridmaker.1
|
|
dh_installman -plibqgis1-dev debian/qgis-config.1
|
|
dh_link
|
|
dh_strip
|
|
dh_compress --exclude=pdf
|
|
dh_fixperms
|
|
dh_makeshlibs
|
|
dh_installdeb
|
|
dh_shlibdeps
|
|
dh_gencontrol
|
|
dh_md5sums
|
|
dh_builddeb
|
|
|
|
binary: binary-indep binary-arch
|
|
.PHONY: build clean binary-indep binary-arch binary install
|