mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-29 15:39:33 +00:00
85 lines
2.2 KiB
Makefile
Executable file
85 lines
2.2 KiB
Makefile
Executable file
#!/usr/bin/make -f
|
|
|
|
# Uncomment this to turn on verbose mode.
|
|
# export DH_VERBOSE=1
|
|
|
|
#
|
|
# debian/compat
|
|
# We should use at least compatibility version 5
|
|
# but this requires the whole building process
|
|
# to be remade and this is something we leave
|
|
# to when we will have more time
|
|
# http://www.tin.org/bin/man.cgi?section=7&topic=debhelper
|
|
#
|
|
|
|
package=@APP@
|
|
|
|
build: build-stamp
|
|
build-stamp:
|
|
dh_testdir
|
|
|
|
clean:
|
|
dh_testdir
|
|
dh_testroot
|
|
dh_clean
|
|
|
|
install: build
|
|
dh_testdir
|
|
dh_testroot
|
|
dh_clean -k
|
|
dh_installdirs
|
|
|
|
# Build architecture-independent files here.
|
|
binary-indep: build install
|
|
# We have nothing to do by default.
|
|
|
|
# Build architecture-dependent files here.
|
|
binary-arch: build install
|
|
dh_testdir
|
|
dh_testroot
|
|
dh_clean -k
|
|
dh_installdirs
|
|
dh_installinit
|
|
dh_installdebconf
|
|
dh_installman
|
|
# Do not strip binary so we can leave debug symbols
|
|
# dh_strip
|
|
dh_compress
|
|
# dh_fixperms
|
|
dh_installdeb
|
|
# install the files into debian/@APP@.
|
|
mkdir -p ./debian/@APP@
|
|
cp -r ./usr/ ./debian/@APP@
|
|
cp -r ../etc/ ./debian/@APP@;
|
|
@CUSTOM_NTOPNG_DOT_CONF@
|
|
cp ../wizard/ntopng-config ./debian/@APP@/usr/bin
|
|
if test "@APP@" = "nedge"; \
|
|
then \
|
|
cp ../etc/ntopng/nedge.conf ./debian/@APP@/etc/ntopng/ntopng.conf; \
|
|
cp ../../pro/nedge/tools/nedge_pinger ./debian/@APP@/usr/bin; \
|
|
cp ../../pro/nedge/tools/nedge_pinger.service ./debian/@APP@/etc/systemd/system; \
|
|
mv ./debian/@APP@/usr/bin/ntopng ./debian/@APP@/usr/bin/nedge; \
|
|
fi
|
|
rm -rf ./debian/@APP@/etc/ntopng/nedge.conf
|
|
rm -rf ./debian/@APP@/usr/share/ntopng/httpdocs/geoip/*.dat
|
|
rm -rf ./debian/@APP@/usr/share/ntopng/httpdocs/mibs
|
|
# strip ./debian/@APP@/usr/bin/@APP@
|
|
-find ./debian/@APP@ -name .svn -exec /bin/rm -rf {} ';'
|
|
-find ./debian/@APP@ -name '*~' -exec /bin/rm -rf {} ';'
|
|
-find ./debian/@APP@ -name '*#' -exec /bin/rm -rf {} ';'
|
|
-find ./debian/@APP@ -name '*.in' -exec /bin/rm -rf {} ';'
|
|
\rm -rf ./debian/@APP@/etc/init.d/nprobe ./debian/@APP@/etc/ld.so.conf.d
|
|
if grep -q init /proc/1/comm; then \
|
|
rm -rf ./debian/@APP@/etc/systemd; \
|
|
else \
|
|
rm -rf ./debian/@APP@/etc/init.d; \
|
|
fi
|
|
# Don't use upstart
|
|
\rm -rf ./debian/@APP@/etc/init
|
|
dh_link
|
|
dh_gencontrol
|
|
dh_md5sums
|
|
dh_builddeb
|
|
|
|
binary: binary-indep binary-arch
|
|
.PHONY: build clean binary-indep binary-arch binary install
|