Skip to content

Commit

Permalink
app-misc/tmux-xpanes: new ebuild.
Browse files Browse the repository at this point in the history
tmux-xpanes is a tmux-based terminal divider written in Bash.

Package-Manager: Portage-2.3.13, Repoman-2.3.3
  • Loading branch information
monsieurp committed Jan 17, 2018
1 parent e45a045 commit adceb1d
Show file tree
Hide file tree
Showing 3 changed files with 52 additions and 0 deletions.
1 change: 1 addition & 0 deletions app-misc/tmux-xpanes/Manifest
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
DIST tmux-xpanes-2.2.2.tar.gz 34457 BLAKE2B b4f33ac6576db4100a4d6895c3c705fe3d44093a1c63d89c20f4203fb71160415903ae70880387f0419ec5bebdb9244a9e5802d9ae8a9c441e3ceebea1e70582 SHA512 0d5242daf95c0af78b64184ba1473620783072851f34fe2a91d4806dc529402bd506ada2e8a455b687f4504bac5cac8300249d555446edaa54a41f3b2eddd45c
15 changes: 15 additions & 0 deletions app-misc/tmux-xpanes/metadata.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>[email protected]</email>
<name>Patrice Clement</name>
</maintainer>
<maintainer type="project">
<email>[email protected]</email>
<name>Gentoo Shell Tools Project</name>
</maintainer>
<upstream>
<remote-id type="github">greymd/tmux-xpanes</remote-id>
</upstream>
</pkgmetadata>
36 changes: 36 additions & 0 deletions app-misc/tmux-xpanes/tmux-xpanes-2.2.2.ebuild
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

EAPI=6

DESCRIPTION="tmux-based terminal divider"
HOMEPAGE="https://github.com/greymd/tmux-xpanes"
SRC_URI="https://github.com/greymd/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"

KEYWORDS="~amd64 ~x86"
LICENSE="MIT"
SLOT="0"

IUSE="zsh-completion"

RDEPEND="
app-misc/tmux
dev-lang/perl
dev-libs/openssl:0=
zsh-completion? ( app-shells/zsh )"

DEPEND="${RDEPEND}"

RESTRICT="test"

DOCS=( CONTRIBUTING.md LICENSE README.md )

src_install() {
dobin bin/*
doman man/*.1
einstalldocs
if use zsh-completion; then
insinto /usr/share/zsh/site-functions
doins contrib/completion/zsh/*
fi
}

0 comments on commit adceb1d

Please sign in to comment.