mirror of
https://github.com/archlinux/aur.git
synced 2026-02-08 05:02:00 +01:00
Update auto-editor to 23w51a
Automatically committed from https://github.com/BrenekH/automated-aur/pull/103.
This commit is contained in:
parent
51cc65470b
commit
2d7801ac70
2 changed files with 14 additions and 12 deletions
10
.SRCINFO
10
.SRCINFO
|
|
@ -1,17 +1,19 @@
|
|||
pkgbase = auto-editor
|
||||
pkgdesc = A command line application for automatically editing video and audio.
|
||||
pkgver = 23.46.1
|
||||
pkgver = 23.51.1
|
||||
pkgrel = 1
|
||||
url = https://auto-editor.com/
|
||||
arch = any
|
||||
license = Unlicense
|
||||
makedepends = python-setuptools
|
||||
makedepends = python-build
|
||||
makedepends = python-pip
|
||||
depends = python
|
||||
depends = python-numpy
|
||||
depends = python-pillow
|
||||
depends = python-av
|
||||
depends = python-pyav
|
||||
optdepends = yt-dlp: download and use URLs as inputs
|
||||
source = auto-editor-23.46.1.tar.gz::https://github.com/WyattBlue/auto-editor/archive/refs/tags/23w46a.tar.gz
|
||||
sha256sums = 50fda6c22864c35b9e2ac3c3eb8c34b7d2cf20804e933c6ecd9b8abe47a86787
|
||||
source = auto-editor-23.51.1.tar.gz::https://github.com/WyattBlue/auto-editor/archive/refs/tags/23w51a.tar.gz
|
||||
sha256sums = 6dbaaaf67a05997301336b5866ae700adbefcf9d99ef8c0f25f0065d29ac7e31
|
||||
|
||||
pkgname = auto-editor
|
||||
|
|
|
|||
16
PKGBUILD
16
PKGBUILD
|
|
@ -2,26 +2,26 @@
|
|||
# Contributor: ston <2424284164@qq.com>
|
||||
|
||||
pkgname=auto-editor
|
||||
pkgver=23.46.1
|
||||
_pkgver=23w46a
|
||||
pkgver=23.51.1
|
||||
_pkgver=23w51a
|
||||
pkgrel=1
|
||||
pkgdesc="A command line application for automatically editing video and audio."
|
||||
url="https://auto-editor.com/"
|
||||
arch=('any')
|
||||
license=("Unlicense")
|
||||
depends=('python' 'python-numpy' 'python-pillow' 'python-av')
|
||||
depends=('python' 'python-numpy' 'python-pillow' 'python-pyav')
|
||||
optdepends=('yt-dlp: download and use URLs as inputs')
|
||||
makedepends=('python-setuptools')
|
||||
makedepends=('python-setuptools' 'python-build' 'python-pip')
|
||||
source=("$pkgname-$pkgver.tar.gz::https://github.com/WyattBlue/auto-editor/archive/refs/tags/${_pkgver}.tar.gz")
|
||||
sha256sums=('50fda6c22864c35b9e2ac3c3eb8c34b7d2cf20804e933c6ecd9b8abe47a86787')
|
||||
sha256sums=('6dbaaaf67a05997301336b5866ae700adbefcf9d99ef8c0f25f0065d29ac7e31')
|
||||
|
||||
build() {
|
||||
cd auto-editor-$_pkgver
|
||||
python setup.py build
|
||||
python -m build
|
||||
}
|
||||
|
||||
package() {
|
||||
cd auto-editor-$_pkgver
|
||||
python setup.py install --root="$pkgdir"
|
||||
install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
|
||||
python -m pip install --root="$pkgdir" dist/*.whl
|
||||
install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue