mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-25 02:19:01 +08:00
41 lines
1.2 KiB
CMake
41 lines
1.2 KiB
CMake
vcpkg_from_github(
|
|
OUT_SOURCE_PATH SOURCE_PATH
|
|
REPO ntop/PF_RING
|
|
REF "${VERSION}"
|
|
SHA512 de86fb2ead8af63a3b73026225ac2dba9ae97c90d0925e30c63ed75f1d1f7f057b6ab586b06dd24fdbbfdce694048b72bbdd35fc4de0c22508701a6c3ee7c7a2
|
|
HEAD_REF dev
|
|
)
|
|
|
|
file(REMOVE_RECURSE "${CURRENT_BUILDTREES_DIR}/kernel")
|
|
file(COPY "${SOURCE_PATH}/kernel/linux/pf_ring.h" DESTINATION "${CURRENT_BUILDTREES_DIR}/kernel/linux")
|
|
|
|
vcpkg_find_acquire_program(BISON)
|
|
vcpkg_find_acquire_program(FLEX)
|
|
|
|
vcpkg_configure_make(
|
|
SOURCE_PATH "${SOURCE_PATH}"
|
|
PROJECT_SUBPATH "userland"
|
|
COPY_SOURCE
|
|
OPTIONS
|
|
--disable-archopt
|
|
)
|
|
string(REPLACE "dynamic" "shared" install_target "install-${VCPKG_LIBRARY_LINKAGE}")
|
|
vcpkg_install_make(
|
|
SUBPATH "lib"
|
|
INSTALL_TARGET "${install_target}"
|
|
OPTIONS
|
|
"LEX=${FLEX}"
|
|
"YACC=${BISON}"
|
|
)
|
|
|
|
vcpkg_install_copyright(
|
|
COMMENT [[
|
|
The user-space PF_RING library source code is distributed under the LGPLv2.1.
|
|
The library is built using binary objects from the userland/lib/libs directory
|
|
which adds an NTOP END USER LICENSE AGREEMENT.
|
|
]]
|
|
FILE_LIST
|
|
"${SOURCE_PATH}/LICENSE"
|
|
"${SOURCE_PATH}/userland/lib/libs/EULA.txt"
|
|
)
|