File: rules

package info (click to toggle)
node-codemirror 6.38.1%2B~cs119.80.67-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 4,544 kB
  • sloc: javascript: 21,786; makefile: 18
file content (28 lines) | stat: -rwxr-xr-x 787 bytes parent folder | download | duplicates (2)
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
28
#!/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-codemirror-lang-markdown -- -v$(DEB_VERSION)
	dh_gencontrol -pnode-crelt -- \
		-v$(shell pkgjs-pjson crelt version)~$(DEB_VERSION) \
		-DHomepage=https://github.com/marijnh/crelt
	dh_gencontrol -pnode-style-mod -- \
		-v$(shell pkgjs-pjson style-mod version)~$(DEB_VERSION) \
		-DHomepage=https://www.npmjs.com/package/style-mod
	set -e; for p in codemirror-*; do \
		VERSION=`pkgjs-pjson $$p version`; \
		dh_gencontrol -pnode-$$p -- -v$$VERSION~$(DEB_VERSION); \
	done