Skip to content

Commit

Permalink
android_arm64_v8a_system_image_packer 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ruslo committed Apr 26, 2018
1 parent 51e1f5f commit 82e2e5c
Show file tree
Hide file tree
Showing 4 changed files with 62 additions and 0 deletions.
1 change: 1 addition & 0 deletions cmake/configs/default.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,7 @@ hunter_config(acf VERSION 0.1.3)
hunter_config(Catch VERSION 2.2.1)
hunter_config(aes VERSION 0.0.1-p1)
hunter_config(aglet VERSION 1.2.1)
hunter_config(android_arm64_v8a_system_image_packer VERSION 1.0.0)
hunter_config(android_arm_eabi_v7a_system_image_packer VERSION 1.0)
hunter_config(android_build_tools_packer VERSION 1.0.0)
hunter_config(android_google_apis_intel_x86_atom_system_image_packer VERSION 1.0.0)
Expand Down
24 changes: 24 additions & 0 deletions cmake/projects/android_arm64_v8a_system_image_packer/hunter.cmake
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 docs/packages/pkg/android_arm64_v8a_system_image_packer.rst
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 examples/android_arm64_v8a_system_image_packer/CMakeLists.txt
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 }

0 comments on commit 82e2e5c

Please sign in to comment.