blob: 4affdf5ebb9ae437c379268d62ae3fa96ee1e849 (
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
|
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit toolchain-funcs
MY_PN="${PN/asfr/ASFR}"
DESCRIPTION="Linux WindowsMedia streaming client"
HOMEPAGE="https://sourceforge.net/projects/asfrecorder/"
SRC_URI="mirror://gentoo/${MY_PN}.zip"
S="${WORKDIR}/${MY_PN}"
LICENSE="public-domain"
SLOT="0"
KEYWORDS="~amd64 ppc x86 ~x86-linux ~ppc-macos"
BDEPEND="app-arch/unzip"
PATCHES=(
"${FILESDIR}"/${P}-headers.patch
)
src_compile() {
tc-export CC
emake -C source ${PN}
}
src_install() {
dobin source/${PN}
einstalldocs
}
|