mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-04-21 00:31:15 -03:00
The main tarball did not contain a .cargo directory, but it does now, and this symlink ends up in the wrong place and is not needed.
29 lines
931 B
Makefile
Executable File
29 lines
931 B
Makefile
Executable File
#!/usr/bin/make -f
|
|
# -*- makefile -*-
|
|
|
|
ifeq (,$(filter terse,$(DEB_BUILD_OPTIONS)))
|
|
export DH_VERBOSE=1
|
|
# VERBOSE to satisfy Debian policy 4.9, introduced in version 4.2.0
|
|
export CARGO_TERM_VERBOSE=true
|
|
endif
|
|
# The LTO profile sets CFLAGS/CXXFLAGS which confuse the compilation process; disable it
|
|
# LTO is still performed by rustc based on Cargo.toml
|
|
export DEB_BUILD_MAINT_OPTIONS=optimize=-lto
|
|
|
|
%:
|
|
dh $@ --buildsystem=cmake --builddirectory=build
|
|
|
|
# Setting the build system is still required, because otherwise the GNUmakefile gets picked up
|
|
override_dh_auto_configure:
|
|
ln -s cargo-vendor/vendor vendor
|
|
dh_auto_configure -- -DCMAKE_BUILD_TYPE=RelWithDebInfo \
|
|
-DRust_CARGO=$$(command -v cargo-1.85 || command -v cargo) \
|
|
-DRust_COMPILER=$$(command -v rustc-1.85 || command -v rustc)
|
|
|
|
override_dh_clean:
|
|
dh_clean --exclude=Cargo.toml.orig
|
|
-unlink vendor
|
|
|
|
override_dh_auto_test:
|
|
cd build && make fish_run_tests
|