97813e9235
so much more simple to read, yet it yelds an identical .deb For people building the package without debian tools, the 4 *.css won't be installed in /usr/share/doc/shellinabox; anymore, but those aren't _documentation_, merely sample configuration files. The stubby Changelog "Please see CHANGELOG.md" is replaced by a symlink; that explains the size increase of 6kb; but Debian package should by policy ship the upstream CHANGELOG if avaible. ``` debdiff GOOD_shellinabox_2.15-1_armhf.deb shellinabox_2.15-1_armhf.deb File lists identical (after any substitutions) Control files: lines which differ (wdiff format) ------------------------------------------------ Installed-Size: [-510-] {+516+} ```
33 lines
1.4 KiB
Makefile
Executable file
33 lines
1.4 KiB
Makefile
Executable file
#!/usr/bin/make -f
|
|
# -*- makefile -*-
|
|
|
|
# Uncomment this to turn on verbose mode.
|
|
#export DH_VERBOSE=1
|
|
|
|
%:
|
|
dh $@ --with autotools-dev,autoreconf
|
|
|
|
# elf-2012.04.10: Since Debian manages package dependencies we can
|
|
# force linkage of ssl s.t. the dependency is properly kept
|
|
# up-to-date. This is much better than attempting to
|
|
# force the right version of ssl to be present
|
|
# s.t. the runtime loader can find them.
|
|
override_dh_auto_configure:
|
|
dh_auto_configure -- --disable-runtime-loading
|
|
|
|
AVAILABLE=debian/shellinabox/etc/shellinabox/options-available
|
|
ENABLED=debian/shellinabox/etc/shellinabox/options-enabled
|
|
override_dh_install:
|
|
dh_install
|
|
install -D -m644 shellinabox/black-on-white.css "$(AVAILABLE)/00+Black on White.css"
|
|
install -D -m644 shellinabox/white-on-black.css "$(AVAILABLE)/00_White On Black.css"
|
|
install -D -m644 shellinabox/color.css "$(AVAILABLE)/01+Color Terminal.css"
|
|
install -D -m644 shellinabox/monochrome.css "$(AVAILABLE)/01_Monochrome.css"
|
|
install -D -m644 debian/README.available "$(AVAILABLE)/README"
|
|
install -D -m644 debian/README.enabled "$(ENABLED)/README"
|
|
cd "$(ENABLED)" && ln -s ../options-available/*.css .
|
|
|
|
# info duplicated in debian/copyright
|
|
# and /usr/share/common-licenses/GPL-2
|
|
rm debian/shellinabox/usr/share/doc/shellinabox/COPYING
|
|
rm debian/shellinabox/usr/share/doc/shellinabox/GPL-2
|