URI:
       lswt-9999.ebuild - overlay - dark gentoo overlay
  HTML git clone https://git.drkhsh.at/overlay.git
   DIR Log
   DIR Files
   DIR Refs
   DIR README
       ---
       lswt-9999.ebuild (569B)
       ---
            1 # Copyright 1999-2017 Gentoo Foundation
            2 # Distributed under the terms of the GNU General Public License v2
            3 
            4 EAPI=8
            5 inherit git-r3 toolchain-funcs
            6 
            7 DESCRIPTION="list Wayland toplevels"
            8 HOMEPAGE="https://git.sr.ht/~leon_plickat/lswt"
            9 EGIT_REPO_URI="https://git.sr.ht/~leon_plickat/lswt"
           10 
           11 LICENSE="ISC"
           12 SLOT="0"
           13 KEYWORDS="amd64 ~x86"
           14 IUSE=""
           15 
           16 RDEPEND="dev-libs/wayland dev-libs/wayland-protocols"
           17 DEPEND="${RDEPEND}"
           18 
           19 src_prepare() {
           20         default
           21 }
           22 
           23 src_compile() {
           24         emake
           25 }
           26 
           27 src_install() {
           28         emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" install
           29         dodoc README
           30         doman lswt.1
           31 }