From 573b5b6afffed058a0a5fa985894b52690c02689 Mon Sep 17 00:00:00 2001 From: BrenekH Automated AUR Date: Thu, 18 Sep 2025 22:42:08 +0000 Subject: [PATCH] Add auto-editor-bin Automatically committed from https://github.com/BrenekH/automated-aur/pull/200. --- .SRCINFO | 18 ++++++++++++++++++ .gitignore | 2 ++ PKGBUILD | 26 ++++++++++++++++++++++++++ 3 files changed, 46 insertions(+) create mode 100644 .SRCINFO create mode 100644 .gitignore create mode 100644 PKGBUILD diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 000000000000..2fcf52f6d1e9 --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,18 @@ +pkgbase = auto-editor-bin + pkgdesc = A command line application for automatically editing video and audio. + pkgver = 29.0.5 + pkgrel = 1 + url = https://auto-editor.com/ + arch = x86_64 + license = Unlicense + depends = glibc + depends = gcc-libs + optdepends = yt-dlp: download and use URLs as inputs + optdepends = xdg-utils: automatically open completed files with xdg-open + provides = auto-editor + conflicts = auto-editor + options = !debug + source = auto-editor-29.0.5-bin::https://github.com/WyattBlue/auto-editor/releases/download/29.0.5/auto-editor-linux-x86_64 + sha256sums = 86ab1e4e38de988e08220363871690535eba9d1a904e4fd92ccf0f139bfeec14 + +pkgname = auto-editor-bin diff --git a/.gitignore b/.gitignore new file mode 100644 index 000000000000..90c0e604b6bb --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +# Require every item to be force added +* \ No newline at end of file diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 000000000000..ce225f612f26 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,26 @@ +# Maintainer: Brenek Harrison +# Contributor: ston <2424284164@qq.com> + +pkgname=auto-editor-bin +pkgver=29.0.5 +pkgrel=1 +pkgdesc="A command line application for automatically editing video and audio." +url="https://auto-editor.com/" +arch=('x86_64') +license=("Unlicense") +provides=("auto-editor") +conflicts=("auto-editor") +depends=("glibc" "gcc-libs") +optdepends=( + 'yt-dlp: download and use URLs as inputs' + 'xdg-utils: automatically open completed files with xdg-open') +source=("auto-editor-$pkgver-bin::https://github.com/WyattBlue/auto-editor/releases/download/${pkgver}/auto-editor-linux-${CARCH}") +sha256sums=('86ab1e4e38de988e08220363871690535eba9d1a904e4fd92ccf0f139bfeec14') + +options=(!debug) + +package() { + install -Dm755 "./auto-editor-${pkgver}-bin" "${pkgdir}/usr/bin/auto-editor" +} + +# vim: ft=sh ts=2 sw=2 et