aboutsummaryrefslogtreecommitdiff
path: root/ports/proj4
diff options
context:
space:
mode:
authorras0219 <533828+ras0219@users.noreply.github.com>2021-01-13 14:41:23 -0800
committerGitHub <noreply@github.com>2021-01-13 14:41:23 -0800
commit4783c36f8c04f584ec4d232958afae9d32bc61d5 (patch)
tree7124916dabdd1a6872e4b5040cce016c61a80421 /ports/proj4
parent8414e15973097e70fe40149e922c402799804b3d (diff)
downloadvcpkg-4783c36f8c04f584ec4d232958afae9d32bc61d5.tar.gz
vcpkg-4783c36f8c04f584ec4d232958afae9d32bc61d5.zip
[boost][many ports] Reformat manifest files in preparation for #15424 (#15616)
Co-authored-by: Robert Schumacher <roschuma@microsoft.com>
Diffstat (limited to 'ports/proj4')
-rw-r--r--ports/proj4/CONTROL18
-rw-r--r--ports/proj4/vcpkg.json42
2 files changed, 42 insertions, 18 deletions
diff --git a/ports/proj4/CONTROL b/ports/proj4/CONTROL
deleted file mode 100644
index 6a5133f10..000000000
--- a/ports/proj4/CONTROL
+++ /dev/null
@@ -1,18 +0,0 @@
-Source: proj4
-Version: 7.2.0
-Homepage: https://github.com/OSGeo/PROJ
-Description: PROJ.4 library for cartographic projections
-Build-Depends: sqlite3[core]
-Default-Features: database,tiff
-
-Feature: tiff
-Build-Depends: tiff
-Description: Enable TIFF support to read some grids
-
-Feature: database
-Build-Depends: sqlite3[tool] (!uwp&!arm)
-Description: generate database
-
-Feature: tools
-Build-Depends: curl
-Description: generate tools
diff --git a/ports/proj4/vcpkg.json b/ports/proj4/vcpkg.json
new file mode 100644
index 000000000..778020fd4
--- /dev/null
+++ b/ports/proj4/vcpkg.json
@@ -0,0 +1,42 @@
+{
+ "name": "proj4",
+ "version-string": "7.2.0",
+ "description": "PROJ.4 library for cartographic projections",
+ "homepage": "https://github.com/OSGeo/PROJ",
+ "dependencies": [
+ {
+ "name": "sqlite3",
+ "default-features": false
+ }
+ ],
+ "default-features": [
+ "database",
+ "tiff"
+ ],
+ "features": {
+ "database": {
+ "description": "generate database",
+ "dependencies": [
+ {
+ "name": "sqlite3",
+ "features": [
+ "tool"
+ ],
+ "platform": "!uwp & !arm"
+ }
+ ]
+ },
+ "tiff": {
+ "description": "Enable TIFF support to read some grids",
+ "dependencies": [
+ "tiff"
+ ]
+ },
+ "tools": {
+ "description": "generate tools",
+ "dependencies": [
+ "curl"
+ ]
+ }
+ }
+}