mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
eb96553975
* Systemd changes and URL option for Gif Effects * Add grayscale to gif effect * WebUI adjustments * Rename version to .version * Copy runHyperionAsRoot.sh to rpi packages * Pack script into all unix packages * Start hyperion only after network is available * Snap builds removed due to poor server connection * Flexible updateHyperionUser.sh * updateHyperionUser script entered in the package * Print help on none sudo execute * Corrected embedded Python location * Replacement for the QWindowsScreen grabWindow function * Updated to latest 2.x mbedtls version 2.27 Co-authored-by: LordGrey <lordgrey.emmel@gmail.com>
32 lines
826 B
Makefile
Executable File
32 lines
826 B
Makefile
Executable File
#!/usr/bin/make -f
|
|
export DH_VERBOSE = 1
|
|
|
|
BUILDDIR = build
|
|
|
|
build:
|
|
mkdir $(BUILDDIR);
|
|
cd $(BUILDDIR); cmake -DUSE_SYSTEM_MBEDTLS_LIBS=ON -DENABLE_DEPLOY_DEPENDENCIES=OFF -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=../debian/tmp/usr ..
|
|
make -j4 -C $(BUILDDIR)
|
|
|
|
binary: binary-indep binary-arch
|
|
|
|
binary-indep:
|
|
|
|
binary-arch:
|
|
cd $(BUILDDIR); cmake -P cmake_install.cmake
|
|
mkdir debian/tmp/DEBIAN
|
|
cp cmake/package-scripts/postinst debian/tmp/DEBIAN
|
|
chmod 0775 debian/tmp/DEBIAN/postinst
|
|
cp cmake/package-scripts/preinst debian/tmp/DEBIAN
|
|
chmod 0775 debian/tmp/DEBIAN/preinst
|
|
cp cmake/package-scripts/prerm debian/tmp/DEBIAN
|
|
chmod 0775 debian/tmp/DEBIAN/prerm
|
|
dpkg-gencontrol -phyperion
|
|
dpkg --build debian/tmp ..
|
|
rm -rf debian/tmp
|
|
|
|
clean:
|
|
rm -rf $(BUILDDIR)
|
|
|
|
.PHONY: build binary binary-arch binary-indep clean
|