1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
#!/usr/bin/make -f
libname = colors
js-pkgname = libjs-$(libname)
js-destdir ?= /usr/share/javascript/$(libname)
js-destexample ?= usr/share/doc/$(js-pkgname)/examples
node-pkgname = node-$(libname)
node-destdir ?= /usr/lib/nodejs
node-destexample ?= usr/share/doc/$(node-pkgname)/examples
%:
dh $@
override_dh_installexamples:
dh_installexamples
sed -i "s#'\.\./#'$(js-destdir)/#" debian/$(node-pkgname)/$(node-destexample)/*.js
sed -i "s#/\.\./themes#/themes#" debian/$(node-pkgname)/$(node-destexample)/*.js
|