blob: 66ff65de4c18aa42cf3a8e53af6c795b9d6a9c0d (
plain)
1
2
3
4
5
6
7
8
9
10
|
require postfix_${PV}.bb
inherit native
FILESDIR = "${@os.path.dirname(bb.data.getVar('FILE',d,1))}/postfix-${PV}"
DEPENDS = "virtual/db-native libpcre-native"
export DIRS = "src/util src/global src/postconf"
do_stage () {
install -m 0755 src/postconf/postconf ${STAGING_BINDIR}/
}
|