21 lines
481 B
Bash
21 lines
481 B
Bash
# Maintainer: Sebastian Hugentobler <shu@vanwa.ch>
|
|
|
|
pkgname=split-audacity-labels
|
|
pkgver=0.1.0
|
|
pkgrel=1
|
|
pkgdesc="Split an audio file along exported audacity labels."
|
|
arch=("any")
|
|
url="https://code.vanwa.ch"
|
|
license=('MIT')
|
|
depends=("ffmpeg" "python3")
|
|
source=(
|
|
"split-audacity-labels"
|
|
)
|
|
sha256sums=("afd19f69358908cdbf2cd6048567ed32cd27ae22da1a69962eb6a5d7e30d84bb")
|
|
|
|
package() {
|
|
cd "$srcdir/"
|
|
|
|
install -Dm 755 split-audacity-labels "$pkgdir/usr/bin/split-audacity-labels"
|
|
}
|