diff options
author | zxp19821005 | 2024-03-04 22:32:50 +0800 |
---|---|---|
committer | zxp19821005 | 2024-03-04 22:32:50 +0800 |
commit | 482b096fdd95d28a0376eb44d7517ea3d3f40a00 (patch) | |
tree | c0503adbbe66fce3d1654d02d8607b072db00d96 | |
parent | 6d715d53506cd8de287deea6732c839d97d54837 (diff) | |
download | aur-482b096fdd95d28a0376eb44d7517ea3d3f40a00.tar.gz |
fix errors
-rw-r--r-- | .SRCINFO | 4 | ||||
-rw-r--r-- | PKGBUILD | 6 |
2 files changed, 5 insertions, 5 deletions
@@ -1,10 +1,10 @@ pkgbase = anklang-bin pkgdesc = A digital audio synthesis application for live creation and composition of music and other audio material. pkgver = 0.2.0 - pkgrel = 3 + pkgrel = 4 url = https://github.com/tim-janik/anklang arch = x86_64 - license = MPL2 + license = MPL-2.0 depends = gtk2 depends = gtk3 depends = alsa-lib @@ -2,11 +2,11 @@ pkgname=anklang-bin pkgver=0.2.0 _electronversion=25 -pkgrel=3 +pkgrel=4 pkgdesc="A digital audio synthesis application for live creation and composition of music and other audio material." arch=('x86_64') url="https://github.com/tim-janik/anklang" -license=("MPL2") +license=("MPL-2.0") provides=("${pkgname%-bin}=${pkgver}") conflicts=("${pkgname%-bin}") depends=( @@ -22,7 +22,7 @@ depends=( source=("${pkgname%-bin}-${pkgver}.deb::${url}/releases/download/v${pkgver}/${pkgname%-bin}_${pkgver}_amd64.deb") sha256sums=('749f5a76b3bde9fdf3f6ea87cca936f2ab2572ac00e31e3d3a47e63f66c0e099') build() { - bsdtar -xf "${srcdir}/data.tar.zst" + bsdtar -xf "${srcdir}/data."* sed "s|Exec=/usr/local/lib/${pkgname%-bin}-0-2/bin/${pkgname%-bin}|Exec=${pkgname%-bin}|g" \ -i "${srcdir}/usr/local/share/applications/${pkgname%-bin}.desktop" } |