18 lines
665 B
Makefile
Executable File
18 lines
665 B
Makefile
Executable File
#!/usr/bin/make -f
|
|
DEB_PYTHON_SYSTEM=pysupport
|
|
|
|
# Debhelper must be included before python-distutils to use
|
|
# # # dh_python / dh_pycentral / dh_pysupport
|
|
include /usr/share/cdbs/1/rules/debhelper.mk
|
|
include /usr/share/cdbs/1/rules/simple-patchsys.mk
|
|
include /usr/share/cdbs/1/class/autotools.mk
|
|
|
|
DEB_CONFIGURE_EXTRA_FLAGS := --prefix=/usr
|
|
DEB_MAKE_BUILD_TARGET := all
|
|
DEB_MAKE_INSTALL_TARGET = install DESTDIR=$(DEB_DESTDIR)
|
|
|
|
binary-install/gajim::
|
|
rm $(DEB_DESTDIR)/usr/share/gajim/src/common/GnuPGInterface.py*
|
|
dh_pysupport -pgajim
|
|
convert $(DEB_DESTDIR)/usr/share/icons/hicolor/64x64/apps/gajim.png -resize 32x32 $(DEB_DESTDIR)/usr/share/pixmaps/gajim.xpm
|