mirror of
https://github.com/archlinux/aur.git
synced 2026-03-14 23:16:48 +01:00
versionbump
This commit is contained in:
parent
5dbc31fb88
commit
80a49c0b6c
2 changed files with 29 additions and 29 deletions
4
.SRCINFO
4
.SRCINFO
|
|
@ -1,6 +1,6 @@
|
|||
pkgbase = zestbay
|
||||
pkgdesc = A PipeWire patchbay and audio routing manager with LV2 plugin hosting
|
||||
pkgver = 0.1.0
|
||||
pkgver = 0.1.1
|
||||
pkgrel = 1
|
||||
url = https://github.com/lemonxah/zestbay
|
||||
arch = x86_64
|
||||
|
|
@ -18,7 +18,7 @@ pkgbase = zestbay
|
|||
depends = lilv
|
||||
depends = lv2
|
||||
depends = dbus
|
||||
source = zestbay-0.1.0.tar.gz::https://github.com/lemonxah/zestbay/archive/refs/tags/v0.1.0.tar.gz
|
||||
source = zestbay-0.1.1.tar.gz::https://github.com/lemonxah/zestbay/archive/refs/tags/v0.1.1.tar.gz
|
||||
sha256sums = SKIP
|
||||
|
||||
pkgname = zestbay
|
||||
|
|
|
|||
54
PKGBUILD
54
PKGBUILD
|
|
@ -1,49 +1,49 @@
|
|||
# Maintainer: lemonxah <lemonxah@gmail.com>
|
||||
pkgname=zestbay
|
||||
pkgver=0.1.0
|
||||
pkgver=0.1.1
|
||||
pkgrel=1
|
||||
pkgdesc="A PipeWire patchbay and audio routing manager with LV2 plugin hosting"
|
||||
arch=('x86_64')
|
||||
url="https://github.com/lemonxah/zestbay"
|
||||
license=('MIT')
|
||||
depends=(
|
||||
'pipewire'
|
||||
'qt6-base'
|
||||
'qt6-declarative'
|
||||
'lilv'
|
||||
'lv2'
|
||||
'dbus'
|
||||
'pipewire'
|
||||
'qt6-base'
|
||||
'qt6-declarative'
|
||||
'lilv'
|
||||
'lv2'
|
||||
'dbus'
|
||||
)
|
||||
makedepends=(
|
||||
'rust'
|
||||
'cargo'
|
||||
'clang'
|
||||
'cmake'
|
||||
'pkg-config'
|
||||
'qt6-base'
|
||||
'qt6-declarative'
|
||||
'rust'
|
||||
'cargo'
|
||||
'clang'
|
||||
'cmake'
|
||||
'pkg-config'
|
||||
'qt6-base'
|
||||
'qt6-declarative'
|
||||
)
|
||||
source=("$pkgname-$pkgver.tar.gz::$url/archive/refs/tags/v$pkgver.tar.gz")
|
||||
sha256sums=('SKIP')
|
||||
|
||||
prepare() {
|
||||
cd "$pkgname-$pkgver"
|
||||
export RUSTUP_TOOLCHAIN=stable
|
||||
cargo fetch --locked --target "$(rustc -vV | sed -n 's/host: //p')"
|
||||
cd "$pkgname-$pkgver"
|
||||
export RUSTUP_TOOLCHAIN=stable
|
||||
cargo fetch --locked --target "$(rustc -vV | sed -n 's/host: //p')"
|
||||
}
|
||||
|
||||
build() {
|
||||
cd "$pkgname-$pkgver"
|
||||
export RUSTUP_TOOLCHAIN=stable
|
||||
export CARGO_TARGET_DIR=target
|
||||
cargo build --frozen --release
|
||||
cd "$pkgname-$pkgver"
|
||||
export RUSTUP_TOOLCHAIN=stable
|
||||
export CARGO_TARGET_DIR=target
|
||||
cargo build --frozen --release
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "$pkgname-$pkgver"
|
||||
install -Dm755 "target/release/$pkgname" "$pkgdir/usr/bin/$pkgname"
|
||||
install -Dm644 "zestbay.desktop" "$pkgdir/usr/share/applications/zestbay.desktop"
|
||||
install -Dm644 "images/zesticon.png" "$pkgdir/usr/share/icons/hicolor/256x256/apps/zestbay.png"
|
||||
install -Dm644 "images/zesttray.png" "$pkgdir/usr/share/icons/hicolor/256x256/apps/zestbay-tray.png"
|
||||
install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
|
||||
cd "$pkgname-$pkgver"
|
||||
install -Dm755 "target/release/$pkgname" "$pkgdir/usr/bin/$pkgname"
|
||||
install -Dm644 "zestbay.desktop" "$pkgdir/usr/share/applications/zestbay.desktop"
|
||||
install -Dm644 "images/zesticon.png" "$pkgdir/usr/share/icons/hicolor/256x256/apps/zestbay.png"
|
||||
install -Dm644 "images/zesttray.png" "$pkgdir/usr/share/icons/hicolor/256x256/apps/zestbay-tray.png"
|
||||
install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue