23 lines
586 B
Bash
23 lines
586 B
Bash
|
# 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"
|
||
|
}
|