blob: 5dbc34c15870b3e29e83c8624c5580535ce7b68b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
DESCRIPTION = "A library for replaying C64 SID music"
SECTION = "libs"
PRIORITY = "optional"
LICENSE = "GPL"
SRC_URI = "http://www.geocities.com/SiliconValley/Lakes/5147/sidplay/packages/libsidplay-${PV}.tgz"
inherit autotools
do_stage() {
oe_libinstall -so -C src libsidplay ${STAGING_LIBDIR}
install -d ${STAGING_INCDIR}/sidplay
for f in src/compconf.h src/emucfg.h src/fformat.h src/fixpoint.h src/libcfg.h src/myendian.h src/mytypes.h src/player.h src/sidtune.h src/version.h
do
install -m 0644 $f ${STAGING_INCDIR}/sidplay/
done
}
|