diff options
Diffstat (limited to 'vcpkg/ports/buck-yeh-bux-sqlite')
| -rw-r--r-- | vcpkg/ports/buck-yeh-bux-sqlite/portfile.cmake | 15 | ||||
| -rw-r--r-- | vcpkg/ports/buck-yeh-bux-sqlite/vcpkg.json | 19 |
2 files changed, 34 insertions, 0 deletions
diff --git a/vcpkg/ports/buck-yeh-bux-sqlite/portfile.cmake b/vcpkg/ports/buck-yeh-bux-sqlite/portfile.cmake new file mode 100644 index 0000000..b2706e2 --- /dev/null +++ b/vcpkg/ports/buck-yeh-bux-sqlite/portfile.cmake @@ -0,0 +1,15 @@ +vcpkg_from_github( + OUT_SOURCE_PATH SOURCE_PATH + REPO buck-yeh/bux-sqlite + REF "${VERSION}" + SHA512 ccfeb141530efcf8233bd3579ba6eb17e7decc1d4fa92706f0810824303078e7f379a9c81a777189860e53c866b9c338b51b2f5884958782d02f7d79d7fb575c + HEAD_REF main +) + +vcpkg_cmake_configure( + SOURCE_PATH "${SOURCE_PATH}" +) + +vcpkg_cmake_install() +file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include") +file(INSTALL "${SOURCE_PATH}/LICENSE" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright) diff --git a/vcpkg/ports/buck-yeh-bux-sqlite/vcpkg.json b/vcpkg/ports/buck-yeh-bux-sqlite/vcpkg.json new file mode 100644 index 0000000..5320d65 --- /dev/null +++ b/vcpkg/ports/buck-yeh-bux-sqlite/vcpkg.json @@ -0,0 +1,19 @@ +{ + "name": "buck-yeh-bux-sqlite", + "version": "1.0.5", + "description": "Modern C++ wrapper classes and utilities of the original sqlite3 API", + "homepage": "https://github.com/buck-yeh/bux-sqlite", + "license": "MIT", + "supports": "!(android | linux | osx | uwp)", + "dependencies": [ + "buck-yeh-bux", + { + "name": "sqlite3", + "default-features": false + }, + { + "name": "vcpkg-cmake", + "host": true + } + ] +} |