forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
app-doc/zsh-lovers: version bump to 0.9.1
- Loading branch information
Showing
2 changed files
with
26 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
DIST zsh-lovers_0.9.0.tar.gz 28883 SHA256 fd97f0ca69180a86acd6330acc013553cb978af3ce2c1e9e7755a9eaa92c239b SHA512 54e7465304313556f9299877314f18cef631c076cad1a8f3b1ce13a6e24dcb4778e852f0eec31bce62bad2bd9503b8741238f097be8cec541e5c4c8f08af9dc4 WHIRLPOOL c86f51cc799be14e79083b23357f2d712a2945fcecaeaf8984cf8a8b920a41ca4bad90632d6db88546e2b38626ba08ecd82f1cc87ee0717b7db51e26c7e60785 | ||
DIST zsh-lovers_0.9.1.tar.xz 26632 SHA256 4ffc5dec97b38a1ede66cea0e8a0a34ff1600f77a092d9a57de123202bef98f3 SHA512 16493f2ec095fbdb992188a732ca4205880fa10fc1f1ab6cde8cbd2a0977d95bb06e46d1635c0c9910c249bec024f3cd13a1f8c6597e5201ef8a26b80fac9c2f WHIRLPOOL d6e56f8d597d8cbe5fcf5ebb48075da42fbf0ea200b9c9f67f1c4a1f6418bdd836c0c43197213ab09c21bc615fae65eb058fd99fb4e70fc25cc2f19671a3ab0f |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# Copyright 1999-2017 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=6 | ||
|
||
DESCRIPTION="Tips, tricks and examples for the Z shell" | ||
HOMEPAGE="https://grml.org/zsh/zsh-lovers.html" | ||
SRC_URI="https://deb.grml.org/pool/main/z/${PN}/${PN}_${PV}.tar.xz" | ||
|
||
LICENSE="GPL-2" | ||
SLOT="0" | ||
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" | ||
|
||
DEPEND="app-text/asciidoc" | ||
|
||
src_compile() { | ||
asciidoc ${PN}.1.txt || die | ||
mv ${PN}.1.html ${PN}.html || die | ||
a2x -f manpage ${PN}.1.txt || die | ||
} | ||
|
||
src_install() { | ||
doman ${PN}.1 | ||
dodoc ${PN}.html | ||
} |