add reuse copyright information
Build Container Image / build_amd64 (push) Successful in 5m22s Details
Build Container Image / build_manifest (push) Successful in 6s Details
Build Container Image / publish_amd64 (push) Successful in 2m57s Details
Build Container Image / publish_manifest (push) Successful in 8s Details

This commit is contained in:
Daniel Wolf 2023-10-24 15:17:19 -04:00
parent 6f4e4b49e0
commit 2a35451b7b
Signed by: nephatrine
GPG Key ID: 59D70EC2E4AAB4D0
8 changed files with 46 additions and 3 deletions

10
.reuse/dep5 Normal file
View File

@ -0,0 +1,10 @@
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: builder-android-sdk
Upstream-Contact: Daniel Wolf <nephatrine@gmail.com>
Source: https://code.nephatrine.net/NephNET/builder-android-sdk
# Sample paragraph, commented out:
#
# Files: src/*
# Copyright: $YEAR $NAME <$CONTACT>
# License: ...

8
LICENSES/ISC.txt Normal file
View File

@ -0,0 +1,8 @@
ISC License:
Copyright (c) 2004-2010 by Internet Systems Consortium, Inc. ("ISC")
Copyright (c) 1995-2003 by Internet Software Consortium
Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.
THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

View File

@ -1,3 +1,9 @@
<!--
SPDX-FileCopyrightText: 2023 Daniel Wolf <nephatrine@gmail.com>
SPDX-License-Identifier: ISC
-->
[Git](https://code.nephatrine.net/NephNET/builder-android-sdk/src/branch/master) |
[Docker](https://hub.docker.com/r/nephatrine/nxbuilder/)
@ -9,16 +15,15 @@ beyond that. It can also be used as a quick "cleanroom" to test builds in.
### Base OS:
- [Ubuntu Linux](https://ubuntu.com/)
- [Debian Linux](https://www.debian.org/)
### Compilers
- [Clang](https://clang.llvm.org/)
- [GCC](https://gcc.gnu.org/)
### Cross-Compilers
- [Android NDK](https://developer.android.com/ndk) (`nxbuilder:android-sdk` only)
- [Android NDK](https://developer.android.com/ndk) (Clang)
### Other Tools

View File

@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2023 Daniel Wolf <nephatrine@gmail.com>
#
# SPDX-License-Identifier: ISC
cmake_minimum_required(VERSION 3.22)
project(native_app_glue C)
add_library(native_app_glue STATIC "${ANDROID_NDK}/sources/android/native_app_glue/android_native_app_glue.c")

View File

@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2023 Daniel Wolf <nephatrine@gmail.com>
#
# SPDX-License-Identifier: ISC
set(ANDROID_ABI "arm64-v8a")
set(CMAKE_SIZEOF_VOID_P 8)

View File

@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2023 Daniel Wolf <nephatrine@gmail.com>
#
# SPDX-License-Identifier: ISC
set(ANDROID_ABI "armeabi-v7a")
set(CMAKE_SIZEOF_VOID_P 4)

View File

@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2023 Daniel Wolf <nephatrine@gmail.com>
#
# SPDX-License-Identifier: ISC
set(ANDROID_ABI "x86")
set(CMAKE_SIZEOF_VOID_P 4)

View File

@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2023 Daniel Wolf <nephatrine@gmail.com>
#
# SPDX-License-Identifier: ISC
set(ANDROID_ABI "x86_64")
set(CMAKE_SIZEOF_VOID_P 8)