31 lines
518 B
Bash
31 lines
518 B
Bash
|
# Copyright 1999-2016 Gentoo Foundation
|
||
|
# Distributed under the terms of the GNU General Public License v2
|
||
|
# $Id$
|
||
|
|
||
|
EAPI=6
|
||
|
|
||
|
EGIT_REPO_URI="https://austenwares.com/gogs/applications/xcwd"
|
||
|
EGIT_BRANCH="master"
|
||
|
inherit git-r3
|
||
|
|
||
|
DESCRIPTION="Returns the cwd of the focused X11 window"
|
||
|
HOMEPAGE="https://austenwares.com/gogs/applications/xcwd"
|
||
|
|
||
|
LICENSE="BSD-2"
|
||
|
SLOT="0"
|
||
|
KEYWORDS="~amd64 ~x86"
|
||
|
IUSE=""
|
||
|
|
||
|
DEPEND=""
|
||
|
RDEPEND="${DEPEND}"
|
||
|
|
||
|
#src_unpack() {
|
||
|
# git-2_src_unpack
|
||
|
#}
|
||
|
#src_configure() {
|
||
|
#
|
||
|
#}
|
||
|
src_install() {
|
||
|
dobin xcwd
|
||
|
}
|