mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
b33466d392
* Test new APT builds * test build * final changes for bookworm and jammy * - Include updateHyperionUser script again - Update package dependencies for APT builds * Installation guide updated * Removed alpha notes and added arm64 APT builds * update docker-compile script * Overwrite CMAKE_SYSTEM_PROCESSOR on Windows builds
33 lines
844 B
Makefile
33 lines
844 B
Makefile
#!/usr/bin/make -f
|
|
export DH_VERBOSE = 1
|
|
|
|
BUILDDIR = build
|
|
|
|
build:
|
|
mkdir $(BUILDDIR);
|
|
cd $(BUILDDIR); cmake @CMAKE_ENVIRONMENT@ -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
|
|
rm -rf debian/tmp/usr/include debian/tmp/usr/lib debian/tmp/usr/bin/flatc
|
|
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 $(BUILDDIR)
|
|
|
|
clean:
|
|
rm -rf $(BUILDDIR)
|
|
|
|
.PHONY: build binary binary-arch binary-indep clean
|