blob: 71f09e0b6fc02d7d38ff3fa376673168e0cfc683 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
DESCRIPTION = "TRE is a lightweight, robust, and efficient POSIX compliant regexp matching library "
LICENSE = "LGPL"
SRC_URI = "http://laurikari.net/tre/tre-${PV}.tar.bz2"
inherit autotools
do_compile_append() {
sed -i -e s:${STAGING_DIR_TARGET}::g \
-e s:/${TARGET_SYS}::g \
tre.pc
}
AUTOTOOLS_STAGE_PKGCONFIG = "1"
do_stage() {
autotools_stage_all
}
|