blob: 86c748f5bbd54aec956480fcf4d3603c30454a5f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
HOMEPAGE = "https://github.com/SELinuxProject"
SRC_URI = "git://github.com/SELinuxProject/selinux.git;branch=master;protocol=https"
SRCREV = "0a8c177dacdc1df96ea11bb8aa75e16c4fa82285"
UPSTREAM_CHECK_GITTAGREGEX = "(?P<pver>\d+(\.\d+)+)"
do_compile() {
oe_runmake all
}
do_install() {
oe_runmake install \
DESTDIR="${D}" \
PREFIX="${prefix}" \
INCLUDEDIR="${includedir}" \
LIBDIR="${libdir}" \
SHLIBDIR="${base_libdir}"
}
|