blob: 61b8487255cd75b1f7195fd04c9dc530eeab6022 (
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=4
NODEJS_MODULE=${PN}
inherit multilib
DESCRIPTION="Render nested hierarchies 'npm ls' style with unicode pipes"
HOMEPAGE="https://npmjs.org/package/archy"
SRC_URI="http://registry.npmjs.org/${PN}/-/${P}.tgz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~x86 ~amd64"
IUSE="example"
DEPEND=">=net-libs/nodejs-0.8.10"
RDEPEND="${DEPEND}"
src_unpack() {
unpack "${A}"
mv "${WORKDIR}/package" ${S}
}
src_compile() {
true
}
src_install() {
local node_modules="${D}/usr/$(get_libdir)/node_modules/${NODEJS_MODULE}"
mkdir -p ${node_modules} || die "Could not create DEST folder"
cp -r ${S}/{index.js,package.json} ${node_modules}
dodoc README*
if use example; then
dodoc -r examples
fi
}
|