sravan-overlay/x11-wm/dwm-flexipatch/dwm-flexipatch-9999.ebuild
Sravan Balaji 790032123d Unstable Packages, Move Dependencies, Replace xfce4-notifyd with dunst
- Mark notify-send-py as unstable
- Mark linux_notification_center as unstable
- Move polybar-dwm-module runtime dependencies to dwm-flexipatch
- Replace xfce4-notifyd with dunst as dwm-flexipatch dependency
2024-05-02 08:29:16 -04:00

61 lines
1.1 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"
SRC_URI="https://gitea.sravanbalaji.com/sravan/${PN}/archive/master.tar.gz"
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-apps/xkill
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
dev-python/zscroll
media-fonts/nerd-fonts
"
src_unpack() {
if [[ -n ${A} ]]; then
unpack ${A}
fi
}
src_install() {
emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" install || die "make install failed"
insinto /usr/share/xsessions
doins dwm.desktop
dodoc README.org
}