mirror of
https://github.com/ZoiteChat/zoitechat.git
synced 2026-03-10 07:50:19 +00:00
24 lines
669 B
Makefile
Executable File
24 lines
669 B
Makefile
Executable File
#!/usr/bin/make -f
|
|
|
|
export DH_VERBOSE=1
|
|
|
|
%:
|
|
dh $@ --buildsystem=meson
|
|
|
|
override_dh_auto_configure:
|
|
dh_auto_configure -- \
|
|
-Dgtk3=true \
|
|
-Dinstall-plugin-metainfo=false \
|
|
-Dwith-lua=lua53
|
|
|
|
override_dh_installchangelogs:
|
|
install -m0755 -d \
|
|
debian/zoitechat/usr/share/doc/zoitechat \
|
|
debian/zoitechat-common/usr/share/doc/zoitechat-common \
|
|
debian/zoitechat-perl/usr/share/doc/zoitechat-perl \
|
|
debian/zoitechat-python3/usr/share/doc/zoitechat-python3 \
|
|
debian/zoitechat-lua/usr/share/doc/zoitechat-lua \
|
|
debian/zoitechat-plugins/usr/share/doc/zoitechat-plugins \
|
|
debian/zoitechat-dev/usr/share/doc/zoitechat-dev
|
|
dh_installchangelogs changelog.rst
|