1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
#!/usr/bin/make -f
# -*- makefile -*-
%:
dh $@
override_dh_auto_build:
ifeq (,$(filter pkg.node-rollup.npm,$(DEB_BUILD_OPTIONS) $(DEB_BUILD_PROFILES)))
rollup --config rollup.config.ts --configPlugin typescript
cp src/rollup/types.d.ts dist/rollup.d.ts
chmod +x dist/bin/rollup
else
@echo "### Build with npm ###"
rm -rf node_modules
HOME=/tmp npm ci --ignore-scripts
HOME=/tmp npm run build
endif
marked-man --version $$(grep version package.json | cut -d\" -f4) --gfm --breaks cli/help.md -o rollup.1
# No need to embed (big) maps
find dist -name '*.map' -delete
override_dh_fixperms:
dh_fixperms
chmod +x debian/rollup/usr/share/nodejs/rollup/dist/bin/rollup
|