diff options
Diffstat (limited to 'app-shells')
-rw-r--r-- | app-shells/posh/Manifest | 1 | ||||
-rw-r--r-- | app-shells/posh/posh-0.13.1.ebuild | 24 |
2 files changed, 25 insertions, 0 deletions
diff --git a/app-shells/posh/Manifest b/app-shells/posh/Manifest index 01dae23d55fa..e98766d65025 100644 --- a/app-shells/posh/Manifest +++ b/app-shells/posh/Manifest @@ -1 +1,2 @@ DIST posh_0.12.6.tar.xz 268872 BLAKE2B 8fef9e682344ca40b83c68ea639d1d684a6d743c97e07e3279b6d11928b0b28e2c8014f1d11e36a3374851c4ad41f078ff7e630954740c460318a70b8ed42677 SHA512 2b862264dd13c840facb158f1e2731dd1f11c7a567308feb6bd80fd5a7ea4d8e383cc13a0819f90da5fdad70d0adcc81e5adf2bd69a7a171e2e874f82509123c +DIST posh_0.13.1.tar.xz 267436 BLAKE2B f534f64595eda7649a146555238309aba00ec79d53206b17c91ba9ed44ab47794541952af670c5040133d164167e8f2bc844fc4b3b646035e0d08e8495d7aedf SHA512 957fc2924ab8f634007db2e15ecdbb8a1c60ffb4917c127c1583c05e222f598a564906cc40c869c95d79995ea85af24010780e7d36d44a5907a691aa9044f23a diff --git a/app-shells/posh/posh-0.13.1.ebuild b/app-shells/posh/posh-0.13.1.ebuild new file mode 100644 index 000000000000..b9d6fe69c69b --- /dev/null +++ b/app-shells/posh/posh-0.13.1.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +DESCRIPTION="Reimplementation of Bourne shell based on pdksh" +HOMEPAGE="https://salsa.debian.org/clint/posh" +SRC_URI="mirror://debian/pool/main/p/posh/${P/-/_}.tar.xz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="" + +DEPEND="app-arch/xz-utils" + +S=${WORKDIR}/posh + +src_configure() { + local myconf=( + --exec-prefix="${EPREFIX:-/}" + ) + econf "${myconf[@]}" +} |