76 lines
1.5 KiB
Bash
76 lines
1.5 KiB
Bash
# Copyright 1999-2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
DESCRIPTION="Dynamic Window Manager for X with preprocessor directive patching"
|
|
HOMEPAGE="https://gitea.sravanbalaji.com/sravan/dwm-flexipatch"
|
|
|
|
EGIT_REPO_URI="https://gitea.sravanbalaji.com/sravan/dwm-flexipatch.git"
|
|
EGIT_BRANCH="master"
|
|
EGIT_CHECKOUT_DIR="${WORKDIR}/${PN}"
|
|
EGIT_SUBMODULES=( '*' )
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
|
|
S="${WORKDIR}/${PN}"
|
|
|
|
DEPEND="
|
|
x11-libs/libX11
|
|
x11-libs/libXinerama
|
|
x11-libs/libxcb
|
|
x11-libs/xcb-util
|
|
dev-libs/yajl
|
|
dev-libs/jsoncpp
|
|
"
|
|
RDEPEND="
|
|
${DEPEND}
|
|
x11-misc/polybar-dwm-module
|
|
x11-misc/betterlockscreen
|
|
x11-misc/xss-lock
|
|
x11-misc/dunst
|
|
x11-misc/xgetres
|
|
x11-misc/numlockx
|
|
x11-apps/xkill
|
|
x11-apps/xinput
|
|
x11-misc/rofi
|
|
x11-misc/greenclip
|
|
x11-terms/kitty
|
|
app-shells/fish
|
|
app-shells/starship
|
|
app-shells/krabby-bin
|
|
media-fonts/nerd-fonts
|
|
sys-process/btop
|
|
sys-apps/qdirstat
|
|
sys-apps/gnome-disk-utility
|
|
media-sound/playerctl
|
|
media-sound/pavucontrol
|
|
media-gfx/flameshot
|
|
dev-python/zscroll
|
|
media-fonts/nerd-fonts
|
|
sys-auth/polkit
|
|
gnome-extra/polkit-gnome
|
|
xfce-base/xfce4-power-manager
|
|
x11-misc/unclutter-xfixes
|
|
x11-misc/xdotool
|
|
x11-misc/picom
|
|
x11-misc/gammastep
|
|
app-misc/geoclue
|
|
app-misc/fastfetch
|
|
net-wireless/blueman
|
|
app-misc/openrgb
|
|
"
|
|
|
|
inherit git-r3
|
|
|
|
src_install() {
|
|
emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" install || die "make install failed"
|
|
|
|
insinto /usr/share/xsessions
|
|
doins dwm.desktop
|
|
|
|
dodoc README.org
|
|
}
|