mirror of
https://github.com/gentoo-mirror/guru.git
synced 2025-04-20 23:46:14 -04:00
gui-wm/miracle-wm: add 0.4.0
Signed-off-by: Takuya Wakazono <pastalian46@gmail.com>
This commit is contained in:
parent
3478c8cf92
commit
0b76933166
@ -1 +1,2 @@
|
||||
DIST miracle-wm-0.3.7.tar.gz 455795 BLAKE2B 262357e01981d3113f6c807148231023a95f9f28261005abefdf30675b414432a1c9385afc7955db3126e31312fd41cbf99d65c538e9d7d0cb425b3718089c3e SHA512 5e9b3f5013cc63d6e98567817afbbbca2d8f46adc8e9da9254babacdd8164b8fc132918417373d45f59f38cf0a1105802b2979beb281cffb7d661c1350069d4f
|
||||
DIST miracle-wm-0.4.0.tar.gz 478369 BLAKE2B 758f6c71dcd9c665ad4f4c7ff2c54c56b338e99c4bfb8cfb1c8295e9e0363723712aac37c30d7a61ecf1529ab80fe5702c510a39e8ca5803bed50de7e6602877 SHA512 eea082c08692fcce4cc3d099ca4565d683b7dfd87e437e863562a7ba939dc31bdeb34e873cb9eaa823a6c4043a995156b06c5449ac3d6080269ffc601e24de56
|
||||
|
54
gui-wm/miracle-wm/miracle-wm-0.4.0.ebuild
Normal file
54
gui-wm/miracle-wm/miracle-wm-0.4.0.ebuild
Normal file
@ -0,0 +1,54 @@
|
||||
# Copyright 2024 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
inherit cmake systemd
|
||||
|
||||
DESCRIPTION="Tiling Wayland compositor based on Mir"
|
||||
HOMEPAGE="https://github.com/miracle-wm-org/miracle-wm"
|
||||
SRC_URI="https://github.com/miracle-wm-org/miracle-wm/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
|
||||
LICENSE="GPL-3+ MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
IUSE="systemd test"
|
||||
RESTRICT="!test? ( test )"
|
||||
|
||||
RDEPEND="
|
||||
dev-cpp/yaml-cpp:=
|
||||
dev-cpp/nlohmann_json
|
||||
dev-libs/glib:2
|
||||
dev-libs/json-c:=
|
||||
dev-libs/libevdev
|
||||
dev-libs/libpcre2:=
|
||||
gui-libs/mir:=
|
||||
media-libs/libglvnd
|
||||
x11-base/xwayland
|
||||
"
|
||||
DEPEND="
|
||||
${RDEPEND}
|
||||
media-libs/glm
|
||||
"
|
||||
BDEPEND="
|
||||
virtual/pkgconfig
|
||||
test? ( dev-cpp/gtest )
|
||||
"
|
||||
|
||||
src_prepare() {
|
||||
cmake_src_prepare
|
||||
use test || cmake_comment_add_subdirectory tests/
|
||||
|
||||
sed -i "s| /usr/lib/systemd/user| $(systemd_get_userunitdir)|" CMakeLists.txt || die
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
local mycmakeargs=(
|
||||
-DSYSTEMD_INTEGRATION=$(usex systemd)
|
||||
)
|
||||
cmake_src_configure
|
||||
}
|
||||
|
||||
src_test() {
|
||||
"${BUILD_DIR}/bin/miracle-wm-tests" || die
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user