#!/usr/bin/make -f #include /usr/share/cdbs/1/rules/debhelper.mk %: dh $@ override_dh_install: custom-files dh_install override_dh_shlibdeps: echo "Nothing to do here" # Build architecture-dependent files here. custom-files: ifeq ($(DEB_BUILD_ARCH), i386) cp -r nwjs0.12-i386/* ./nwjs0.12.install/usr/share/nwjs0.12 cp -r nwjs0.12_extra_codecs-i386/* ./nwjs0.12-codecs-extra.install/usr/share/nwjs0.12 endif ifeq ($(DEB_BUILD_ARCH), amd64) cp -r nwjs0.12-amd64/* ./nwjs0.12.install/usr/share/nwjs0.12 cp -r nwjs0.12_extra_codecs-amd64/* ./nwjs0.12-codecs-extra.install/usr/share/nwjs0.12 endif