Line 0
Link Here
|
|
|
1 |
# Copyright 1999-2019 Gentoo Authors |
2 |
# Distributed under the terms of the GNU General Public License v2 |
3 |
|
4 |
EAPI=7 |
5 |
|
6 |
inherit toolchain-funcs |
7 |
|
8 |
MY_PN="${PN/asfr/ASFR}" |
9 |
DESCRIPTION="Linux Windows Media Streaming client" |
10 |
HOMEPAGE="https://sourceforge.net/projects/asfrecorder/" |
11 |
SRC_URI="mirror://sourceforge/${PN}/${MY_PN}.zip" |
12 |
|
13 |
LICENSE="public-domain" |
14 |
SLOT="0" |
15 |
KEYWORDS="~amd64 ~ppc ~x86 ~x86-linux ~ppc-macos" |
16 |
|
17 |
BDEPEND="app-arch/unzip" |
18 |
|
19 |
S=${WORKDIR}/${MY_PN} |
20 |
|
21 |
src_compile() { |
22 |
# There is a Makefile, but it only works for Cygwin, so we |
23 |
# only compile this single program. |
24 |
cd "${S}"/source || die |
25 |
$(tc-getCC) -o ${PN} ${CFLAGS} ${LDFLAGS} ${PN}.c || die "Build failed" |
26 |
} |
27 |
|
28 |
src_install () { |
29 |
# Again, no makefiles, so just take what we want. |
30 |
dobin source/${PN} |
31 |
dodoc README.TXT |
32 |
} |