c73cb0e70a
svn: r21748
77 lines
1.9 KiB
Makefile
Executable File
77 lines
1.9 KiB
Makefile
Executable File
#!/usr/bin/make -f
|
|
|
|
# This file was automatically generated by stdeb 0.6.0 at
|
|
# Tue, 26 Mar 2013 16:28:27 +0100
|
|
|
|
# Unset the environment variables set by dpkg-buildpackage. (This is
|
|
# necessary because distutils is brittle with compiler/linker flags
|
|
# set. Specifically, packages using f2py will break without this.)
|
|
unexport CPPFLAGS
|
|
unexport CFLAGS
|
|
unexport CXXFLAGS
|
|
unexport FFLAGS
|
|
unexport LDFLAGS
|
|
|
|
#exports specified using stdeb Setup-Env-Vars:
|
|
export DH_OPTIONS=--buildsystem=python_distutils
|
|
|
|
clean:
|
|
dh_testdir
|
|
dh_testroot
|
|
|
|
# [ ! -f Makefile ] || $(MAKE) distclean
|
|
# -rm -f src/*.pyo src/*/*.pyo
|
|
# -rm -f config.status config.log
|
|
|
|
dh_auto_clean
|
|
dh_clean
|
|
|
|
install: build
|
|
dh_testdir
|
|
dh_testroot
|
|
dh_prep
|
|
dh_installdirs
|
|
|
|
# Add here commands to install the package into debian/tmp.
|
|
# GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1
|
|
$(MAKE) install DESTDIR=`pwd`/debian/gramps
|
|
-rm -f debian/gramps/usr/share/gramps/COPYING
|
|
ln -s /usr/share/common-licenses/GPL-2 debian/gramps/usr/share/gramps/COPYING
|
|
-rm -rf debian/gramps/usr/var
|
|
# cp src/data/gramps.xml debian/gramps/usr/share/mime/packages
|
|
-find debian/gramps/usr/share/ -name "*.pyo" -exec rm -f '{}' ';'
|
|
|
|
cp debian/gramps.xpm debian/gramps/usr/share/pixmaps/
|
|
# cp src/gramps.xpm debian/tmp/usr/share/pixmaps/
|
|
# cp src/images/gramps.svg debian/gramps/usr/share/pixmaps/
|
|
# chmod 644 debian/gramps/usr/share/pixmaps/gramps.svg
|
|
|
|
# Build architecture-independent files here.
|
|
binary-indep: build install
|
|
dh_testdir
|
|
dh_testroot
|
|
dh_installdocs FAQ
|
|
dh_installmenu
|
|
# dh_installman
|
|
dh_installmime -i
|
|
# dh_installchangelogs ChangeLog
|
|
dh_installchangelogs
|
|
dh_icons
|
|
# dh_movefiles -i
|
|
# dh_gconf -i
|
|
dh_link -i
|
|
dh_compress -i
|
|
dh_fixperms -i
|
|
dh_pycentral -i
|
|
dh_installdeb -i
|
|
dh_gencontrol -i
|
|
dh_md5sums -i
|
|
dh_builddeb -i
|
|
|
|
|
|
# Build architecture-dependent files here.
|
|
binary-arch: build install
|
|
|
|
binary: binary-indep binary-arch
|
|
.PHONY: build clean binary-indep binary-arch binary install
|