early-access version 2853
This commit is contained in:
20
externals/vcpkg/ports/libcrafter/fix-build-error.patch
vendored
Executable file
20
externals/vcpkg/ports/libcrafter/fix-build-error.patch
vendored
Executable file
@@ -0,0 +1,20 @@
|
||||
diff --git a/libcrafter/configure.ac b/libcrafter/configure.ac
|
||||
index 860d98b..b04ccce 100644
|
||||
--- a/libcrafter/configure.ac
|
||||
+++ b/libcrafter/configure.ac
|
||||
@@ -35,14 +35,13 @@ AC_ARG_WITH(libpcap,
|
||||
PCAPINC="-I$withval -I$withval/bpf"
|
||||
PCAPLIB="-L$withval -lpcap"
|
||||
elif test -f $withval/include/pcap.h -a \
|
||||
- -f $withval/include/net/bpf.h -a \
|
||||
-f $withval/lib/libpcap.a; then
|
||||
owd=`pwd`
|
||||
if cd $withval; then withval=`pwd`; cd $owd; fi
|
||||
PCAPINC="-I$withval/include"
|
||||
PCAPLIB="-L$withval/lib -lpcap"
|
||||
else
|
||||
- AC_ERROR(pcap.h, net/bpf.h, or libpcap.a not found in $withval)
|
||||
+ AC_ERROR(pcap.h, or libpcap.a not found in $withval)
|
||||
fi
|
||||
;;
|
||||
esac ],
|
||||
26
externals/vcpkg/ports/libcrafter/portfile.cmake
vendored
Executable file
26
externals/vcpkg/ports/libcrafter/portfile.cmake
vendored
Executable file
@@ -0,0 +1,26 @@
|
||||
vcpkg_from_github(
|
||||
OUT_SOURCE_PATH SOURCE_PATH
|
||||
REPO pellegre/libcrafter
|
||||
REF 86f81f101b5e3051ed04563b3ad3dd7a823afb21 #version-1.0
|
||||
SHA512 bd0eac06896df63f0fff0ed3cf7ca5176e56615476c8134bd26f035692ab9e583f58f1f57daa7673771a710d6921c0c6a6473ab181982ad57727584f2cde56d0
|
||||
HEAD_REF master
|
||||
PATCHES fix-build-error.patch
|
||||
)
|
||||
|
||||
vcpkg_configure_make(
|
||||
AUTOCONFIG
|
||||
SOURCE_PATH "${SOURCE_PATH}"
|
||||
PROJECT_SUBPATH libcrafter
|
||||
OPTIONS
|
||||
"--with-libpcap=${CURRENT_INSTALLED_DIR}"
|
||||
)
|
||||
|
||||
vcpkg_install_make()
|
||||
|
||||
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include")
|
||||
|
||||
vcpkg_copy_pdbs()
|
||||
vcpkg_fixup_pkgconfig()
|
||||
|
||||
# Handle copyright
|
||||
file(INSTALL "${SOURCE_PATH}/libcrafter/LICENSE" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright)
|
||||
11
externals/vcpkg/ports/libcrafter/vcpkg.json
vendored
Executable file
11
externals/vcpkg/ports/libcrafter/vcpkg.json
vendored
Executable file
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"name": "libcrafter",
|
||||
"version": "1.0",
|
||||
"port-version": 2,
|
||||
"description": "Libcrafter is a high level library for C++ designed to create and decode network packets.",
|
||||
"homepage": "https://github.com/pellegre/libcrafter",
|
||||
"supports": "!windows",
|
||||
"dependencies": [
|
||||
"libpcap"
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user