blob: 9be032260ce4e646ab2b9badeb8f2bb0e049e6fd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
include sox_${PV}.bb
S = "${WORKDIR}/sox-${PV}"
inherit native
do_patch() {
true
}
do_stage() {
make bindir="${STAGING_BINDIR}" libdir="${STAGING_LIBDIR}" mandir="${STAGING_DIR_HOST}${layout_mandir}" includedir="${STAGING_INCDIR}" install
rm ${STAGING_BINDIR}/rec
ln -s ${STAGING_BINDIR}/play ${STAGING_BINDIR}/rec
}
do_install() {
true
}
|