#!/usr/bin/make -f #include /usr/share/cdbs/1/rules/debhelper.mk %: dh $@ --include-binaries 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.21-i386/* ./nwjs0.21.install/usr/share/nwjs0.21 endif ifeq ($(DEB_BUILD_ARCH), amd64) cp -r nwjs0.21-amd64/* ./nwjs0.21.install/usr/share/nwjs0.21 endif