diff --git a/net-im/matterhorn-bin/Manifest b/net-im/matterhorn-bin/Manifest index 5764ea10bf..3f529f14e5 100644 --- a/net-im/matterhorn-bin/Manifest +++ b/net-im/matterhorn-bin/Manifest @@ -1 +1,2 @@ DIST matterhorn-bin-90000.0.1.tar.bz2 10380853 BLAKE2B c8296851b4b7e6a7efb28ee9d1c569e85ac2aee5e8ad9a6bdc65c9e46a6425c31ea4f7cf1a703431429d2b7bdb8e39056f3a1ad7b2ad7d9e78bcbe8517e428c9 SHA512 0719fec269922fab3d0535409c751ec39c6ad1ee983481ffd00482e987818ee4b48b8961f9bb52ec4b55fa9871f4f1ba96d8764df3807f20716046b61b65b68d +DIST matterhorn-bin-90000.1.0.tar.bz2 10455111 BLAKE2B aadb68ca74e1d2b9188087342a306005fa5e733aa6ae95a552ef56694ab5e635f0f0aced77516c16c92c7d698daf0ab08f9fa471111cdb1936609b8339ccaa54 SHA512 d6c77b7a62dd29641cbf43429ede291419250d4284e9950300e266cd9f9c1e6235392cb1c8b5c13c19f35c7a6971a915bdef3d5edbe76a240847a268e94ac875 diff --git a/net-im/matterhorn-bin/matterhorn-bin-90000.1.0.ebuild b/net-im/matterhorn-bin/matterhorn-bin-90000.1.0.ebuild new file mode 100644 index 0000000000..178617c2eb --- /dev/null +++ b/net-im/matterhorn-bin/matterhorn-bin-90000.1.0.ebuild @@ -0,0 +1,44 @@ +# Copyright 2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +MY_PN="${PN%-bin}" +MY_P="${MY_PN}-${PV}-ubuntu-22.04-jammy-x86_64" + +DESCRIPTION="Terminal based Mattermost client" +HOMEPAGE="https://github.com/matterhorn-chat/matterhorn" +SRC_URI="https://github.com/matterhorn-chat/${MY_PN}/releases/download/${PV}/${MY_P}.tar.bz2 -> ${P}.tar.bz2" + +S="${WORKDIR}/${MY_P}" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="-* ~amd64" + +RDEPEND=" + ${DEPEND} + dev-libs/gmp:0 + sys-libs/ncurses:0/6 + sys-libs/zlib:0/1 +" + +QA_PREBUILT="*" + +src_install() { + default + + dobin matterhorn + + dodoc docs/commands.md + dodoc docs/keybindings.md + dodoc docs/sample-config.ini + + insinto /usr/share/${MY_PN} + exeinto /usr/share/${MY_PN}/notification-scripts + doins -r emoji + doins -r syntax + doins -r client-scripts + doexe notification-scripts/notify + doexe notification-scripts/notifyV2 +}