diff options
| author | Robert Schumacher <roschuma@microsoft.com> | 2018-03-23 10:55:04 -0700 |
|---|---|---|
| committer | Robert Schumacher <roschuma@microsoft.com> | 2018-03-23 10:55:04 -0700 |
| commit | 7a1bc577c53c6c513c03cea6ef582af2055beebd (patch) | |
| tree | 191ed89a8b6e8fba57472d6a6168c78dcb82564c /ports/sqlite-orm | |
| parent | 55e385952df99bed38c5a053999e73aa1113d92a (diff) | |
| download | vcpkg-7a1bc577c53c6c513c03cea6ef582af2055beebd.tar.gz vcpkg-7a1bc577c53c6c513c03cea6ef582af2055beebd.zip | |
[sqlite-orm] Initial commit of 1.1
Diffstat (limited to 'ports/sqlite-orm')
| -rw-r--r-- | ports/sqlite-orm/CONTROL | 4 | ||||
| -rw-r--r-- | ports/sqlite-orm/portfile.cmake | 15 |
2 files changed, 19 insertions, 0 deletions
diff --git a/ports/sqlite-orm/CONTROL b/ports/sqlite-orm/CONTROL new file mode 100644 index 000000000..893a0dfe9 --- /dev/null +++ b/ports/sqlite-orm/CONTROL @@ -0,0 +1,4 @@ +Source: sqlite-orm +Version: 1.1 +Build-Depends: sqlite3 +Description: SQLite ORM light header only library for modern C++ diff --git a/ports/sqlite-orm/portfile.cmake b/ports/sqlite-orm/portfile.cmake new file mode 100644 index 000000000..876bbd0e3 --- /dev/null +++ b/ports/sqlite-orm/portfile.cmake @@ -0,0 +1,15 @@ +include(vcpkg_common_functions) + +vcpkg_from_github( + OUT_SOURCE_PATH SOURCE_PATH + REPO fnc12/sqlite_orm + REF v1.1 + SHA512 ebd3c956660b90b1ea64420374db009c68cbab1edd3694d15e953c968190c066e084934327dcf674bcea31e23b14d32c54af7e9ba54f7c6036c3e7cb7cdc6c8d + HEAD_REF master +) + +file(COPY ${SOURCE_PATH}/include/sqlite_orm DESTINATION ${CURRENT_PACKAGES_DIR}/include/) + +file(INSTALL + ${SOURCE_PATH}/LICENSE + DESTINATION ${CURRENT_PACKAGES_DIR}/share/sqlite-orm RENAME copyright) |
