forked from ruslo/hunter
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
android_arm64_v8a_system_image_packer 1.0.0
- Loading branch information
Showing
4 changed files
with
62 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
24 changes: 24 additions & 0 deletions
24
cmake/projects/android_arm64_v8a_system_image_packer/hunter.cmake
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# Copyright (c) 2016-2018, Ruslan Baratov | ||
# All rights reserved. | ||
|
||
# !!! DO NOT PLACE HEADER GUARDS HERE !!! | ||
|
||
include(hunter_add_version) | ||
include(hunter_cacheable) | ||
include(hunter_download) | ||
include(hunter_pick_scheme) | ||
|
||
hunter_add_version( | ||
PACKAGE_NAME | ||
android_arm64_v8a_system_image_packer | ||
VERSION | ||
1.0.0 | ||
URL | ||
"https://github.com/hunter-packages/android_arm64_v8a_system_image_packer/archive/v1.0.0.tar.gz" | ||
SHA1 | ||
e11d0b19f4d542c2a1347fb7d813a8efa9031622 | ||
) | ||
|
||
hunter_pick_scheme(DEFAULT url_sha1_cmake) | ||
hunter_cacheable(android_arm64_v8a_system_image_packer) | ||
hunter_download(PACKAGE_NAME android_arm64_v8a_system_image_packer) |
23 changes: 23 additions & 0 deletions
23
docs/packages/pkg/android_arm64_v8a_system_image_packer.rst
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
.. spelling:: | ||
|
||
android | ||
arm64 | ||
v8a | ||
system | ||
image | ||
packer | ||
|
||
.. index:: android_sdk_component ; android_arm64_v8a_system_image_packer | ||
|
||
.. _pkg.android_arm64_v8a_system_image_packer: | ||
|
||
android_arm64_v8a_system_image_packer | ||
===================================== | ||
|
||
- `Official <https://github.com/hunter-packages/android_arm64_v8a_system_image_packer>`__ | ||
- `Example <https://github.com/ruslo/hunter/blob/master/examples/android_arm64_v8a_system_image_packer/CMakeLists.txt>`__ | ||
|
||
.. literalinclude:: /../examples/android_arm64_v8a_system_image_packer/CMakeLists.txt | ||
:language: cmake | ||
:start-after: # DOCUMENTATION_START { | ||
:end-before: # DOCUMENTATION_END } |
14 changes: 14 additions & 0 deletions
14
examples/android_arm64_v8a_system_image_packer/CMakeLists.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# Copyright (c) 2016-2018, Ruslan Baratov | ||
# All rights reserved. | ||
|
||
cmake_minimum_required(VERSION 3.0) | ||
|
||
# Emulate HunterGate: | ||
# * https://github.com/hunter-packages/gate | ||
include("../common.cmake") | ||
|
||
project(download-android_arm64_v8a_system_image_packer) | ||
|
||
# DOCUMENTATION_START { | ||
hunter_add_package(android_arm64_v8a_system_image_packer) | ||
# DOCUMENTATION_END } |