initial commit

This commit is contained in:
Sebastian Hugentobler 2023-06-22 09:43:42 +02:00
commit 78f71a0fb1
Signed by: shu
GPG key ID: BB32CF3CA052C2F0
4 changed files with 64 additions and 0 deletions

22
PKGBUILD Normal file
View file

@ -0,0 +1,22 @@
# Maintainer: Sebastian Hugentobler <shu@vanwa.ch>
pkgname=aax-tools
pkgver=0.1.0
pkgrel=2
pkgdesc="Ffmpeg incantations to get something useful from aax files."
arch=("any")
url="https://code.vanwa.ch"
license=('MIT')
depends=("ffmpeg")
source=(
"aax-to-chapter"
"aax-to-m4a"
)
sha256sums=("ff999cb350c5587824e2d513969f1d87e8879b8892716082ea9108a7347fc50a" "74018431b8838944e41afe9144cca79917ff834b0c2e100a6f9ef28c52fdf45c")
package() {
cd "$srcdir/"
install -Dm 755 aax-to-chapter "$pkgdir/usr/bin/aax-to-chapter"
install -Dm 755 aax-to-m4a "$pkgdir/usr/bin/aax-to-m4a"
}