blob: 450cca3ab1a8c423d0b433c609d5e626264e7d5a (
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
|
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit flag-o-matic toolchain-funcs
DESCRIPTION="A program to scan through a MPEG file and count the number of GOPs and frames"
HOMEPAGE="http://www.iamnota.net/mpglen/"
SRC_URI="mirror://gentoo/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
S="${WORKDIR}/${PN}"
src_prepare() {
default
# awful Makefile, just rely on implicit rules
rm Makefile || die
}
src_configure() {
append-lfs-flags
tc-export CC
}
src_compile() {
emake mpglen
}
src_install() {
dobin ${PN}
dodoc AUTHORS Changelog README
}
|