blob: 0c0fa10421e08d1bdbe54b98c06e6d8dc3acb749 (
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'
doins -r "${S}/opt/bashfun"
insinto '/usr/bin'
doins "${S}/usr/bin/bst"
chmod +x "${D}/usr/bin/bst"
}
|