blob: 44a191a5138ae07dba7b982fcf1d6d4a5984df5e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
DESCRIPTION = "An MP3 command line encoder"
HOMEPAGE = "http://unimut.fsk.uni-heidelberg.de/demi/comprec/index.html"
SECTION = "base"
PRIORITY = "optional"
LICENSE = "GPL"
SRC_URI = "http://unimut.fsk.uni-heidelberg.de/demi/comprec/comprec-${PV}.tar.gz \
file://makefile.patch;apply=yes"
export AS = "${TARGET_PREFIX}as"
do_compile() {
oe_runmake
}
do_install() {
install -d ${D}${bindir}
install -m 0755 shine ${D}${bindir}/shine
}
SRC_URI[md5sum] = "705eebe74d98397e26193e0db9612b03"
SRC_URI[sha256sum] = "905ee280a38f479ab7da75e6dfba21f221b23bb068111ebddc4c2e853f3fff09"
|