blob: 9b4dd29433bdff0506bf7be7d4a7791d10e535ca (
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_SYS}/man" includedir="${STAGING_INCDIR}" install
rm ${STAGING_BINDIR}/rec
ln -s ${STAGING_BINDIR}/play ${STAGING_BINDIR}/rec
}
do_install() {
true
}
|