terminator/debian/rules
bryce 07c8dee9eb debian: Change packaging from cdbs to debhelper
+ Bump Standards-Version to 3.9.5 (no changes).
  + Migrate from cdbs to dh.
  + Add python-dbus to Depends.
  + Bump Standards Version to 3.9.4.
  + Bump debhelper version to 9.
  + Bump compat level 5 to 9.
2015-09-19 23:18:23 -07:00

26 lines
520 B
Makefile
Executable File

#!/usr/bin/make -f
# -*- makefile -*-
#export DH_VERBOSE=1
%:
dh $@ --with python2
override_dh_auto_install:
python setup.py \
--without-icon-cache \
install \
--install-lib=usr/share/terminator/ \
--install-data=usr/ \
--install-scripts=usr/share/terminator/ \
--root=$(CURDIR)/debian/terminator/ \
--no-compile -O0
override_dh_installchangelogs:
dh_installchangelogs ChangeLog
override_dh_clean:
rm -rf build/
rm -f data/terminator.desktop
rm -f po/.intltool-merge-cache
find . -name '*.pyc' -delete