diff options
author | B Stack <bgstack15@gmail.com> | 2020-09-16 23:09:34 +0000 |
---|---|---|
committer | B Stack <bgstack15@gmail.com> | 2020-09-16 23:09:34 +0000 |
commit | ba853302cb64a1f88388db3cc2b6e39d0d327776 (patch) | |
tree | 71a13bbada07e81b32da105e05f05a04443fa802 /newmoon/debian/rules | |
parent | Merge branch 'waterfox-bump' into 'master' (diff) | |
parent | WIP: add xfce-helper for palemoon (diff) | |
download | stackrpms-ba853302cb64a1f88388db3cc2b6e39d0d327776.tar.gz stackrpms-ba853302cb64a1f88388db3cc2b6e39d0d327776.tar.bz2 stackrpms-ba853302cb64a1f88388db3cc2b6e39d0d327776.zip |
Merge branch 'palemoon-bump' into 'master'
Palemoon 28.13.0
See merge request bgstack15/stackrpms!187
Diffstat (limited to 'newmoon/debian/rules')
-rwxr-xr-x | newmoon/debian/rules | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/newmoon/debian/rules b/newmoon/debian/rules new file mode 100755 index 0000000..461d685 --- /dev/null +++ b/newmoon/debian/rules @@ -0,0 +1,48 @@ +#!/usr/bin/make -f + +export SHELL=/bin/bash + +## borrowed from stevepusser's logic +## Build with gcc-8 on Buster (beowulf/ceres) +## If you enable this, then d/control needs lsb-release as a build dependency. +#distrelease := $(shell lsb_release -cs) +#ifeq ($(distrelease),$(filter $(distrelease),buster beowulf/ceres)) +#export CC=gcc-8 +#export CXX=g++-8 +#export CPP=cpp-8 +#export LD=gcc-8 +#endif + +export MCFILE=debian/mozconfig + +%: + dh $@ + +override_dh_auto_clean: + rm -f mozconfig + dh_auto_clean + find . -name '*.pyc' -delete + +override_dh_auto_configure: + cp ${MCFILE} mozconfig + +override_dh_auto_build: + make -f client.mk build ENABLE_STRIP=1 + +override_dh_auto_install: + make -f client.mk DESTDIR=$$(pwd)/debian/newmoon prefix=/usr \ + installdir=/usr/lib/newmoon \ + sdkdir=/usr/lib/newmoon-devel install + rm -rf $$(pwd)/debian/newmoon/usr/share/idl + rm -rf $$(pwd)/debian/newmoon/usr/lib/newmoon-devel + rm -rf $$(pwd)/debian/newmoon/usr/include +# remove vestigial duplicate file + rm -rf $$(pwd)/debian/newmoon/usr/lib/newmoon/palemoon-bin + mv $$(pwd)/debian/newmoon/usr/lib/newmoon/palemoon $$(pwd)/debian/newmoon/usr/lib/newmoon/newmoon + rm -rf $$(pwd)/debian/newmoon/usr/bin/palemoon + +override_dh_shlibdeps: + dh_shlibdeps -l /usr/lib/newmoon + +override_dh_strip_nondeterminism: + dh_strip_nondeterminism -Xdebian/newmoon/usr/lib/newmoon/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi |