1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
#!/usr/bin/make -f
# -*- makefile -*-
# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1
include /usr/share/dpkg/pkg-info.mk
%:
dh $@
override_dh_installdocs:
dh_installdocs
dh_nodejs_autodocs auto_dispatch
# Fix versions and homepage of components
override_dh_gencontrol:
dh_gencontrol -pnode-react-hot-loader -- -v$(DEB_VERSION)
dh_gencontrol -pnode-global -- \
-v$(shell debian/fix-version global $(DEB_VERSION)) \
-DHomepage=https://github.com/Raynos/global
dh_gencontrol -pnode-hoist-non-react-statics -- \
-v$(shell debian/fix-version hoist-non-react-statics $(DEB_VERSION)) \
-DHomepage=https://github.com/mridgway/hoist-non-react-statics
dh_gencontrol -pnode-shallowequal -- \
-v$(shell debian/fix-version shallowequal $(DEB_VERSION)) \
-DHomepage=https://github.com/dashed/shallowequal
|