initial commit

This commit is contained in:
Sebastian Hugentobler 2023-06-22 09:50:12 +02:00
commit e88a2dde6e
Signed by: shu
GPG key ID: BB32CF3CA052C2F0
3 changed files with 75 additions and 0 deletions

20
PKGBUILD Normal file
View file

@ -0,0 +1,20 @@
# 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"
}