diff --git a/ti-edge-ai-apps-8.1/suite/bullseye/debian/changelog b/ti-edge-ai-apps-8.1/suite/bullseye/debian/changelog new file mode 100644 index 0000000000000000000000000000000000000000..6cd22d2f1a7a9c8587ca976000d492bbd8db5c7d --- /dev/null +++ b/ti-edge-ai-apps-8.1/suite/bullseye/debian/changelog @@ -0,0 +1,6 @@ +ti-edgeai-apps-8.1 (8.1.0.0-0~bullseye+20220523) bullseye; urgency=low + + * Rebuild for repos.rcn-ee.com + + -- Robert Nelson <robertcnelson@gmail.com> Mon, 23 May 2022 16:42:17 -0500 + diff --git a/ti-edge-ai-apps-8.1/suite/bullseye/debian/compat b/ti-edge-ai-apps-8.1/suite/bullseye/debian/compat new file mode 100644 index 0000000000000000000000000000000000000000..ec635144f60048986bc560c5576355344005e6e7 --- /dev/null +++ b/ti-edge-ai-apps-8.1/suite/bullseye/debian/compat @@ -0,0 +1 @@ +9 diff --git a/ti-edge-ai-apps-8.1/suite/bullseye/debian/control b/ti-edge-ai-apps-8.1/suite/bullseye/debian/control new file mode 100644 index 0000000000000000000000000000000000000000..4bbc16979a7d4e1bc3995fc6caed05935159bcb2 --- /dev/null +++ b/ti-edge-ai-apps-8.1/suite/bullseye/debian/control @@ -0,0 +1,17 @@ +Source: ti-edgeai-apps-8.1 +Section: misc +Priority: optional +Maintainer: Robert Nelson <robertcnelson@gmail.com> +Build-Depends: + debhelper (>= 9) + , ca-certificates + , cmake + , git +Standards-Version: 4.5.1 + +Package: ti-edgeai-apps-8.1 +Architecture: arm64 +Depends: + ${misc:Depends} +Description: TI vision-apps + TI vision-apps diff --git a/ti-edge-ai-apps-8.1/suite/bullseye/debian/install b/ti-edge-ai-apps-8.1/suite/bullseye/debian/install new file mode 100644 index 0000000000000000000000000000000000000000..b1b309db4cc228bca011efba3516dc3faed5c3d6 --- /dev/null +++ b/ti-edge-ai-apps-8.1/suite/bullseye/debian/install @@ -0,0 +1 @@ +tmp/opt/* /opt diff --git a/ti-edge-ai-apps-8.1/suite/bullseye/debian/rules b/ti-edge-ai-apps-8.1/suite/bullseye/debian/rules new file mode 100755 index 0000000000000000000000000000000000000000..dc400b8bdc107c233efe35a48a8e70ef0a997682 --- /dev/null +++ b/ti-edge-ai-apps-8.1/suite/bullseye/debian/rules @@ -0,0 +1,21 @@ +#!/usr/bin/make -f +# -*- makefile -*- + +# Uncomment this to turn on verbose mode. +export DH_VERBOSE=1 + +DEB_BUILD_OPTIONS=noautodbgsym + +# Disable dh_strip +override_dh_strip: + +# Disable dh_strip_nondeterminism +override_dh_strip_nondeterminism: + +override_dh_auto_configure: + mkdir -p ./tmp/opt/ ; git clone --branch REL.PSDK.LINUX.SK.TDA4VM.08.01 --depth 1 https://git.ti.com/git/edgeai/edge_ai_apps ./tmp/opt/edge_ai_apps/ + cd ./tmp/opt/edge_ai_apps/ ; ./download_models.sh --recommended + cd ./tmp/opt/edge_ai_apps/app_cpp/ ; cmake . -B build ; cmake --build build -j4 + +%: + dh $@ diff --git a/ti-edge-ai-apps-8.1/version.sh b/ti-edge-ai-apps-8.1/version.sh new file mode 100644 index 0000000000000000000000000000000000000000..77f0d86e27259ac90a6f15f4db7e3e8aad85d079 --- /dev/null +++ b/ti-edge-ai-apps-8.1/version.sh @@ -0,0 +1,20 @@ +#!/bin/bash -e + +package_name="ti-edgeai-apps-8.1" +debian_pkg_name="${package_name}" +package_version="8.1.0.0" +package_source="" +src_dir="" + +git_repo="" +git_sha="" +reprepro_dir="t/${package_name}" +dl_path="pool/main/${reprepro_dir}/" + +debian_version="${package_version}-0" +debian_untar="" +debian_patch="" + +clear_changelog="enable" + +bullseye_version="~bullseye+20220523"