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.
Package-Manager: Portage-2.3.5, Repoman-2.3.2
- Loading branch information
Showing
1 changed file
with
39 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 |
---|---|---|
@@ -0,0 +1,39 @@ | ||
# Copyright 1999-2017 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=6 | ||
|
||
inherit eutils toolchain-funcs | ||
|
||
DESCRIPTION="Easily add ANSI colouring to shell scripts" | ||
HOMEPAGE="http://www.runslinux.net/?page_id=10" | ||
SRC_URI="http://runslinux.net/projects/color/${P}.tar.gz" | ||
|
||
LICENSE="GPL-2" | ||
SLOT="0" | ||
KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86" | ||
IUSE="" | ||
|
||
src_prepare() { | ||
eapply "${FILESDIR}"/${PV}-ldflags.patch | ||
default | ||
tc-export CC | ||
} | ||
|
||
src_install() { | ||
dobin color | ||
dodoc CHANGELOG README | ||
|
||
# symlink for british users. | ||
dosym color /usr/bin/colour | ||
} | ||
|
||
pkg_postinst() { | ||
elog "For information on using colour in your shell scripts," | ||
elog "run \`color\` without any arguments." | ||
elog | ||
elog "To see all the colours available, use this command" | ||
elog " $ color --list" | ||
elog | ||
elog "More examples are available in ${EPREFIX}/usr/share/doc/${PF}." | ||
} |