blob: 9d898c7ddcfff10019424fa549f52663db8d4b61 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header:
inherit eutils
DESCRIPTION="Command line interface to LibRCC"
SRC_URI="http://darksoft.org/files/rusxmms/rcctools-${PV}.tar.bz2"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 amd64"
src_unpack() {
unpack ${P}.tar.bz2
}
src_compile() {
econf
make
}
src_install() {
into /usr
mkdir -p ${D}/usr/bin
make install DESTDIR=${D} INSTALLTOP=${D}/usr
}
|