mirror of
https://github.com/ntop/ntopng.git
synced 2026-08-17 12:23:23 +00:00
79 lines
3.4 KiB
Makefile
79 lines
3.4 KiB
Makefile
#
|
|
# Change it according to your setup
|
|
#
|
|
NTOPNG_HOME=$(PWD)/../..
|
|
HERE=${NTOPNG_HOME}/packages/macos
|
|
NTOPNG_BUILD=${NTOPNG_HOME}/packages/macos/install
|
|
|
|
all: clean package
|
|
|
|
VERSION=`grep VERSION ../../include/config.h | cut -d " " -f 3 | tr -d '"'`
|
|
ARCH_NAME="arm64"
|
|
PRODUCT_PKG="./ntopng-$(VERSION)-macos-$(ARCH_NAME).pkg"
|
|
|
|
|
|
package: ntopng-build
|
|
pkgbuild \
|
|
--root "$(HERE)/install" \
|
|
--scripts "$(HERE)/scripts" \
|
|
--identifier "org.ntop.ntopng" \
|
|
--version "$(VERSION)" \
|
|
--install-location "/" \
|
|
org.ntop.ntopng.pkg
|
|
|
|
productbuild \
|
|
--distribution "$(HERE)/distribution.xml" \
|
|
--resources "$(HERE)/Resources" \
|
|
--package-path "$(HERE)" \
|
|
$(PRODUCT_PKG)
|
|
|
|
/bin/rm org.ntop.ntopng.pkg
|
|
|
|
ntopng-build:
|
|
if test -e "./install"; then /bin/rm -f install; fi
|
|
\mkdir -p ${NTOPNG_BUILD}/usr/local/bin ${NTOPNG_BUILD}/usr/local/etc/ntopng ${NTOPNG_BUILD}/usr/local/share/man/man8
|
|
\mkdir -p ${NTOPNG_BUILD}/usr/local/opt/ntopng ${NTOPNG_BUILD}/usr/local/share/ntopng/httpdocs/geoip ./install/
|
|
cd $(NTOPNG_HOME); make ; cp ntopng ${NTOPNG_BUILD}/usr/local/bin/ntopng-bin
|
|
cp ./ntopng ${NTOPNG_BUILD}/usr/local/bin/
|
|
cp ./uninstall.sh ${NTOPNG_BUILD}/usr/local/bin/ntopng-uninstall.sh
|
|
cp ./ntopng-macos.conf ${NTOPNG_BUILD}/usr/local/etc/ntopng/ntopng.conf
|
|
@echo "Copying library dependencies..."
|
|
./copylibs.sh ${NTOPNG_BUILD}/usr/local/opt/ntopng
|
|
|
|
#cp redis-server ${NTOPNG_BUILD}/usr/local/bin/redis-server-bin
|
|
#cp /opt/homebrew/bin/redis-server ${NTOPNG_BUILD}/usr/local/bin/ntopng-redis-server
|
|
|
|
cp ../../httpdocs/geoip/dbip-asn-*.mmdb ../../httpdocs/geoip/dbip-country-*.mmdb ${NTOPNG_BUILD}/usr/local/share/ntopng/httpdocs/geoip
|
|
|
|
cp $(NTOPNG_HOME)/ntopng.8 ${NTOPNG_BUILD}/usr/local/share/man/man8
|
|
cp -RL $(NTOPNG_HOME)/httpdocs ${NTOPNG_BUILD}/usr/local/share/ntopng
|
|
mv $(NTOPNG_HOME)/scripts/lua/pro /tmp
|
|
cp -RL $(NTOPNG_HOME)/scripts ${NTOPNG_BUILD}/usr/local/share/ntopng
|
|
/bin/rm -f ${NTOPNG_BUILD}/usr/local/share/ntopng/scripts/lua/pro
|
|
# cp -R $(NTOPNG_HOME)/pro/scripts/lua ${NTOPNG_BUILD}/usr/local/share/ntopng/scripts/lua/pro
|
|
mv /tmp/pro $(NTOPNG_HOME)/scripts/lua/pro
|
|
mv ${NTOPNG_BUILD}/usr/local/share/ntopng/httpdocs/ssl/ntopng-cert.pem.dummy ${NTOPNG_BUILD}/usr/local/share/ntopng/httpdocs/ssl/ntopng-cert.pem
|
|
mkdir ${NTOPNG_BUILD}/usr/local/share/ntopng/pro
|
|
cp -r $(NTOPNG_HOME)/pro/httpdocs ${NTOPNG_BUILD}/usr/local/share/ntopng/pro
|
|
cp -r $(NTOPNG_HOME)/pro/scripts ${NTOPNG_BUILD}/usr/local/share/ntopng/pro
|
|
rm -rf ${NTOPNG_BUILD}/usr/local/share/ntopng/pro/scripts/lua/nedge
|
|
cd ${NTOPNG_BUILD}/usr/local/share/ntopng/scripts/lua; ln -s ../../pro/scripts/lua pro; cd -
|
|
|
|
find ${NTOPNG_BUILD}/usr/local/share/ntopng/pro -name "*.lua" -type f -exec ./compresslua.sh {} ';'
|
|
|
|
mkdir -p ./install/Library/LaunchDaemons
|
|
cp ${NTOPNG_BUILD}/../org.ntop.ntopng.plist ./install/Library/LaunchDaemons
|
|
chmod 644 ./install/Library/LaunchDaemons/org.ntop.ntopng.plist
|
|
|
|
rm -rf ${NTOPNG_BUILD}/etc/init.d
|
|
find ${NTOPNG_BUILD}/usr/local/share/ntopng -name "*~" | xargs /bin/rm -rf
|
|
find ${NTOPNG_BUILD}/usr/local/share/ntopng -name ".svn" | xargs /bin/rm -rf
|
|
find ${NTOPNG_BUILD}/usr/local/share/ntopng -name ".git" | xargs /bin/rm -rf
|
|
@find . -name "*#" -exec /bin/rm {} ';'
|
|
@find . -name "*~" -exec /bin/rm {} ';'
|
|
/bin/rm -f ${NTOPNG_BUILD}/usr/local/share/ntopng/httpdocs/geoip/GeoLite*
|
|
|
|
clean:
|
|
rm -rf *~ install
|
|
|
|
#cd ${NTOPNG_BUILD}/usr/local/share/ntopng/scripts/lua; rm -rf pro; ln -s ../../pro/scripts/lua pro
|