diff options
Diffstat (limited to 'recipes-support/libipt')
-rw-r--r-- | recipes-support/libipt/libipt_2.1.2.bb (renamed from recipes-support/libipt/libipt_2.0.1.bb) | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/recipes-support/libipt/libipt_2.0.1.bb b/recipes-support/libipt/libipt_2.1.2.bb index 68f6d5c5..7806cf6b 100644 --- a/recipes-support/libipt/libipt_2.0.1.bb +++ b/recipes-support/libipt/libipt_2.1.2.bb | |||
@@ -5,28 +5,28 @@ library or it can be partially or fully integrated into your tool." | |||
5 | HOMEPAGE = "https://github.com/intel/libipt" | 5 | HOMEPAGE = "https://github.com/intel/libipt" |
6 | 6 | ||
7 | LICENSE = "BSD-3-Clause" | 7 | LICENSE = "BSD-3-Clause" |
8 | LIC_FILES_CHKSUM = "file://LICENSE;md5=c91702d8338efc75588b838922b7b803" | 8 | LIC_FILES_CHKSUM = "file://LICENSE;md5=491799fd9431e57ad52cb0ef3497afce" |
9 | 9 | ||
10 | inherit pkgconfig cmake | 10 | inherit pkgconfig cmake |
11 | 11 | ||
12 | S = "${WORKDIR}/git" | 12 | SRC_URI = "git://github.com/intel/libipt.git;protocol=https;branch=stable/v2.1" |
13 | 13 | ||
14 | SRC_URI = "git://github.com/intel/libipt.git;protocol=https;branch=stable/v2.0" | 14 | SRCREV = "ffc548e5fbc2fa3e9795d4593f861e1df99cf906" |
15 | |||
16 | SRCREV = "916d777123bf60d323890557347570e5e19dfa12" | ||
17 | 15 | ||
18 | EXTRA_OECMAKE += " \ | 16 | EXTRA_OECMAKE += " \ |
19 | -DPTDUMP=ON \ | 17 | -DPTDUMP=ON \ |
20 | -DPTTC=ON \ | 18 | -DPTTC=ON \ |
19 | -DPTSEG=ON \ | ||
20 | -DCMAKE_SKIP_RPATH=ON \ | ||
21 | " | 21 | " |
22 | 22 | ||
23 | do_install_append() { | 23 | do_install:append() { |
24 | install -d ${D}${bindir}/libipt | 24 | install -d ${D}${bindir}/libipt |
25 | install -d ${D}${bindir}/libipt/tests | 25 | install -d ${D}${bindir}/libipt/tests |
26 | 26 | ||
27 | cp -r ${B}/bin/* ${D}${bindir}/libipt/ | 27 | cp -r ${B}/bin/* ${D}${bindir}/libipt/ |
28 | cp -r ${WORKDIR}/git/test/src/* ${D}${bindir}/libipt/tests | 28 | cp -r ${S}/test/src/* ${D}${bindir}/libipt/tests |
29 | } | 29 | } |
30 | 30 | ||
31 | FILES_${PN}-test = "${bindir}" | 31 | FILES:${PN}-test = "${bindir}" |
32 | PACKAGES =+ "${PN}-test" | 32 | PACKAGES =+ "${PN}-test" |