2023-06-26 12:49:08 +03:00
|
|
|
#!/usr/bin/make -f
|
2023-06-26 12:54:31 +03:00
|
|
|
|
|
|
|
DEB_BUILD_OPTIONS=nocheck
|
|
|
|
|
2023-06-26 12:49:08 +03:00
|
|
|
%:
|
|
|
|
dh $@ --with python3 --buildsystem pybuild
|
|
|
|
|
|
|
|
override_dh_auto_build:
|
|
|
|
maturin build --release --strip
|
|
|
|
|
|
|
|
override_dh_install:
|
|
|
|
mkdir -p debian/python3-orjson
|
|
|
|
python3 -m installer --destdir="debian/python3-orjson" target/wheels/*.whl
|
|
|
|
dh_install
|