Update to 1.5.0

This commit is contained in:
soymadip_ 2026-02-01 05:05:47 +00:00
parent 2a7125357a
commit f2006360fe
2 changed files with 24 additions and 12 deletions

View file

@ -1,19 +1,22 @@
pkgbase = autotitle
pkgdesc = Automated media file renamer using online databases
pkgver = 1.4.0
pkgver = 1.5.0
pkgrel = 1
url = https://github.com/mydehq/autotitle
arch = x86_64
arch = aarch64
license = GPL3
depends = glibc
backup = etc/autotitle/config.yml
source = autotitle-1.4.0::https://github.com/mydehq/autotitle/releases/download/v1.4.0/autotitle-linux-amd64
source = https://github.com/mydehq/autotitle/raw/v1.4.0/src/config.yml
source = https://github.com/mydehq/autotitle/raw/v1.4.0/LICENSE
source = https://github.com/mydehq/autotitle/raw/v1.4.0/README.md
sha256sums = SKIP
source = https://github.com/mydehq/autotitle/raw/v1.5.0/src/config.yml
source = https://github.com/mydehq/autotitle/raw/v1.5.0/LICENSE
source = https://github.com/mydehq/autotitle/raw/v1.5.0/README.md
sha256sums = SKIP
sha256sums = SKIP
sha256sums = SKIP
source_x86_64 = autotitle-linux-amd64::https://github.com/mydehq/autotitle/releases/download/v1.5.0/autotitle-linux-amd64
sha256sums_x86_64 = SKIP
source_aarch64 = autotitle-linux-arm64::https://github.com/mydehq/autotitle/releases/download/v1.5.0/autotitle-linux-arm64
sha256sums_aarch64 = SKIP
pkgname = autotitle

View file

@ -1,24 +1,33 @@
# Maintainer: soymadip
pkgname=autotitle
pkgver=1.4.0
pkgver=1.5.0
pkgrel=1
pkgdesc="Automated media file renamer using online databases"
arch=('x86_64')
arch=('x86_64' 'aarch64')
url="https://github.com/mydehq/autotitle"
license=('GPL3')
depends=('glibc')
source=("${pkgname}-${pkgver}::${url}/releases/download/v${pkgver}/${pkgname}-linux-amd64"
"${url}/raw/v${pkgver}/src/config.yml"
source_x86_64=("${pkgname}-linux-amd64::${url}/releases/download/v${pkgver}/${pkgname}-linux-amd64")
source_aarch64=("${pkgname}-linux-arm64::${url}/releases/download/v${pkgver}/${pkgname}-linux-arm64")
source=("${url}/raw/v${pkgver}/src/config.yml"
"${url}/raw/v${pkgver}/LICENSE"
"${url}/raw/v${pkgver}/README.md")
sha256sums_x86_64=('SKIP')
sha256sums_aarch64=('SKIP')
sha256sums=('SKIP'
'SKIP'
'SKIP'
'SKIP')
backup=('etc/autotitle/config.yml')
package() {
install -Dm755 "${pkgname}-${pkgver}" "$pkgdir/usr/bin/autotitle"
local _bin_file="${pkgname}-linux-amd64"
[ "$CARCH" == "aarch64" ] && _bin_file="${pkgname}-linux-arm64"
install -Dm755 "$_bin_file" "$pkgdir/usr/bin/autotitle"
install -Dm644 "config.yml" "$pkgdir/etc/autotitle/config.yml"
install -Dm644 "LICENSE" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"