Add auto-editor-bin

Automatically committed from https://github.com/BrenekH/automated-aur/pull/200.
This commit is contained in:
BrenekH Automated AUR 2025-09-18 22:42:08 +00:00
commit 573b5b6aff
3 changed files with 46 additions and 0 deletions

18
.SRCINFO Normal file
View file

@ -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

2
.gitignore vendored Normal file
View file

@ -0,0 +1,2 @@
# Require every item to be force added
*

26
PKGBUILD Normal file
View file

@ -0,0 +1,26 @@
# Maintainer: Brenek Harrison <brenekharrison @ gmail d0t com>
# 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