diff options
author | dpope <[email protected]> | 2012-02-03 15:45:25 +1000 |
---|---|---|
committer | Rohan McGovern <[email protected]> | 2012-02-10 07:24:48 +0100 |
commit | bc66ec0bc5f548a72d21557d529f2d03c7417f09 (patch) | |
tree | 53aa0444fc698cde712fb8e0486e3da1a56f853d /devices/maemo5/debian/rules | |
parent | 98451b5e136af38b00b008ae58ec8243c981eee4 (diff) |
Change-Id: I271146636615ab16f79ad3e66985076e2bd7a95c
Reviewed-by: Sarah Jane Smith <[email protected]>
Diffstat (limited to 'devices/maemo5/debian/rules')
-rwxr-xr-x | devices/maemo5/debian/rules | 47 |
1 files changed, 0 insertions, 47 deletions
diff --git a/devices/maemo5/debian/rules b/devices/maemo5/debian/rules deleted file mode 100755 index 5aabd23c..00000000 --- a/devices/maemo5/debian/rules +++ /dev/null @@ -1,47 +0,0 @@ -#!/usr/bin/make -f -# -*- makefile -*- - -# To build using this rules file: -# # -# ### install debian packaging stuff if not already present: -# sudo apt-get install dpkg-dev debhelper cdbs -# -# ### set up the build directory with version number - DO NOT CD INTO IT YET! -# mkdir quick3d-tp1 -# -# ### copy all the stuff across - cannot shadow build (probably don't want git) -# (cd ~/depot/qt/quick3d && tar cf - --exclude-vcs .)|(cd quick3d-tp1 && tar xf -) -# cp -f ~/depot/qt/quick3d/devices/maemo5/debian/* quick3d-tp1/debian/. -# -# cd quick3d-tp1 -# export DEB_BUILD_OPTIONS="parallel=4" -# fakeroot dpkg-buildpackage -b - -# Uncomment this to turn on verbose mode. -export DH_OPTIONS=-v -export DH_VERBOSE=1 - -include /usr/share/cdbs/1/rules/debhelper.mk -include /usr/share/cdbs/1/class/makefile.mk - -# Find out how many parallel threads to run -TMP_BUILD_OPTS = $(subst $(comma),$(space),$(DEB_BUILD_OPTIONS)) -ifneq (,$(filter parallel=%,$(TMP_BUILD_OPTS))) - NUMJOBS = $(patsubst parallel=%,%,$(filter parallel=%,$(TMP_BUILD_OPTS))) - PARALLEL_MAKEFLAGS += -j$(NUMJOBS) -endif - -DEB_MAKE_INVOKE := $(MAKE) $(PARALLEL_MAKEFLAGS) -DEB_MAKE_INSTALL_TARGET := INSTALL_ROOT=$(DEB_DESTDIR) install -DEB_DH_INSTALL_SOURCEDIR := debian/tmp - -common-configure-arch:: - qmake -spec linux-g++-maemo5 quick3d.pro CONFIG+=maemo CONFIG+=package - -common-install-arch:: install-desktop-items - -install-desktop-items: - mkdir -p $(DEB_DESTDIR)/usr/share/pixmaps - find examples -name "icon-l*.png" -exec cp {} $(DEB_DESTDIR)/usr/share/pixmaps \; - mkdir -p $(DEB_DESTDIR)/usr/share/applications/hildon - find examples -name "m5-*.desktop" -exec cp {} $(DEB_DESTDIR)/usr/share/applications/hildon \; |