URI: 
       wmutils-9999.ebuild - parlay - yet another gentoo overlay
  HTML git clone https://git.parazyd.org/parlay
   DIR Log
   DIR Files
   DIR Refs
   DIR README
       ---
       wmutils-9999.ebuild (569B)
       ---
            1 # Copyright 1999-2025 Gentoo Authors
            2 # Distributed under the terms of the GNU General Public License v2
            3 
            4 EAPI=8
            5 
            6 inherit git-r3
            7 
            8 DESCRIPTION="Set of window manipulation tools"
            9 HOMEPAGE="https://github.com/wmutils/core"
           10 EGIT_REPO_URI="https://github.com/wmutils/core"
           11 
           12 LICENSE="ISC"
           13 SLOT="0"
           14 KEYWORDS=""
           15 
           16 DEPEND="x11-libs/libwm"
           17 RDEPEND="${DEPEND}"
           18 
           19 src_prepare() {
           20         default
           21         sed -e 's:^MANPREFIX.*:MANPREFIX = $(PREFIX)/share/man:' -i config.mk
           22         mv wtf.c twf.c
           23         mv man/wtf.1 man/twf.1
           24         sed -e 's:wtf\.c:twf\.c:' -i Makefile
           25         sed -e 's:wtf\.1:twf\.1:' -i man/Makefile
           26 }