File debian.rules of Package coriolis-eda
#!/usr/bin/make -f
# -*- makefile -*-
# Sample debian/rules that uses debhelper.
# This file was originally written by Joey Hess and Craig Small.
# As a special exception, when this file is copied by dh-make into a
# dh-make output file, you may use that output file without restriction.
# This special exception was added by Craig Small in version 0.37 of dh-make.
# Uncomment this to turn on verbose mode.
export DH_VERBOSE=1
NAME = coriolis-eda
VERSION = 2.5.5
DESTDIR = $(CURDIR)/debian/tmp
DOCDIR = $(DESTDIR)/usr/share/doc
%:
dh $@ --with python3
binary:
dh_testdir
dh_testroot
dh_installchangelogs
dh_prep
tar zxvf /usr/src/packages/SOURCES/venv-al9-2.5.5.tar.gz
cp /usr/src/packages/SOURCES/patchvenv.sh .
chmod u+x patchvenv.sh .
patchVEnvArgs="--use-system-packages"
./patchvenv.sh ${patchVEnvArgs}
make PREFIX=/usr -f Makefile.LIP6 help install DESTDIR=$(DESTDIR)
# Not working due to python3-watchfiles (used by venv/pelican).
#make PREFIX=/usr -f Makefile.LIP6 help install_docs DESTDIR=$(DESTDIR)
(mkdir -p $(DOCDIR); cd $(DOCDIR); tar zxf /usr/src/packages/SOURCES/coriolis-docs-17783c54f.tar.gz)
dh_installdeb
dh_install
dh_shlibdeps
dh_gencontrol
dh_md5sums
dh_builddeb
clean:
dh_testdir
dh_testroot
dh_clean