2024-04-14 16:54:08 +02:00
|
|
|
#!/usr/bin/make -f
|
|
|
|
|
2024-07-28 16:22:44 +02:00
|
|
|
export PIKA_BUILD_ARCH = $(shell cat ../pika-build-arch)
|
|
|
|
|
|
|
|
override_dh_prep:
|
|
|
|
# amd64 build prep
|
|
|
|
ifeq (amd64-v3,$(PIKA_BUILD_ARCH))
|
|
|
|
# Does not support LTO due to dylib-lto
|
|
|
|
#export RUSTFLAGS = -C target-cpu=x86-64-v3 -C lto=fat -C embed-bitcode -C codegen-units=1 -C opt-level=3 -Zdylib-lto
|
2024-07-28 16:39:20 +02:00
|
|
|
export RUSTFLAGS = -C target-cpu=x86-64-v3 -C opt-level=3
|
2024-07-28 16:22:44 +02:00
|
|
|
endif
|
|
|
|
|
2024-04-14 16:54:08 +02:00
|
|
|
%:
|
|
|
|
dh ${@}
|
|
|
|
|
|
|
|
override_dh_auto_install:
|
2024-04-14 17:06:16 +02:00
|
|
|
/root/.cargo/bin/cargo fetch
|
|
|
|
|
|
|
|
/root/.cargo/bin/cargo build --release
|
|
|
|
|
|
|
|
mkdir -p debian/an-anime-game-launcher/usr/bin/
|
|
|
|
cp -vf target/release/anime-game-launcher debian/an-anime-game-launcher/usr/bin/
|
|
|
|
chmod 755 debian/an-anime-game-launcher/usr/bin/anime-game-launcher
|
|
|
|
|
|
|
|
mkdir -p debian/an-anime-game-launcher/usr/share/pixmaps
|
|
|
|
cp -vf assets/images/icon.png debian/an-anime-game-launcher/usr/share/pixmaps/an-anime-game-launcher.png
|
|
|
|
chmod 644 debian/an-anime-game-launcher/usr/share/pixmaps/an-anime-game-launcher.png
|
|
|
|
|
|
|
|
mkdir -p debian/an-anime-game-launcher/usr/share/icons/hicolor/scalable/apps
|
2024-04-14 17:11:50 +02:00
|
|
|
cp -vf assets/images/icon.png debian/an-anime-game-launcher/usr/share/icons/hicolor/scalable/apps/moe.launcher.an-anime-game-launcher.png
|
2024-04-14 17:06:16 +02:00
|
|
|
chmod 644 debian/an-anime-game-launcher/usr/share/icons/hicolor/scalable/apps/moe.launcher.an-anime-game-launcher.png
|
|
|
|
|
|
|
|
mkdir -p debian/an-anime-game-launcher/usr/share/applications/
|
|
|
|
cp -vf an-anime-game-launcher.desktop debian/an-anime-game-launcher/usr/share/applications/
|
|
|
|
chmod 644 debian/an-anime-game-launcher/usr/share/applications/an-anime-game-launcher.desktop
|