blob: df14b042bbf9d1c6189c63a75f2d1c42eeb0f36f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=4
inherit eutils
DESCRIPTION="bash function library"
HOMEPAGE=""
SRC_URI="http://www.aperiplus.co.uk/downloads/src/${P}.tar.bz2"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
src_install() {
insinto '/opt/bashfun'
doins -r "${S}"
insinto '/usr/bin'
doins "${S}/usr/bin/bst"
chmod +x "${D}/usr/bin/bst"
}
|