blob: 979b541196d4bfe5c53973605fdf2c81cc3f73dd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
EAPI=2
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="x86 amd64"
IUSE=""
src_install() {
dodir '/opt/bashfun' || die "out of cheese error 1"
insinto '/opt/bashfun' || die "out of cheese error 2"
cp -ar ${S}'/opt/bashfun/'* ${D}'/opt/bashfun/' || die "out of cheese error 3"
insinto '/usr/bin' || die "out of cheese error 4"
doins ${S}'/usr/bin/bst' || die "out of cheese error 5"
chmod +x ${D}'/usr/bin/bst'
}
|