blob: d2b32ee7bd82074b0efd9f05ab7db1bbd808c47f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
# Maintainer: Robert Plant <rob@robertplant.io>
pkgname=paswitch-rs
pkgver=0.3.14
pkgrel=1
makedepends=('rust' 'cargo')
arch=('i686' 'x86_64' 'armv6h' 'armv7h')
pkgdesc="List and swap to pulse sinks by name"
license=('GPL3')
depends=('pulse-native-provider' 'paswitch')
provides=('paswitch-rs')
url=https://github.com/RobertPlant/paswitch-rs
source=("$pkgname-$pkgver.tar.gz::https://crates.io/api/v1/crates/$pkgname/$pkgver/download")
sha512sums=('0cc80d61d32a3441875c308cc271b38f78c17534eadb56cb50f32519d383847a66a8639c8e7ba03f14d1efee8b198735bc0eac19ff46666f312ae866fec5790a')
check() {
cd $pkgname-$pkgver
cargo test --release
}
build() {
cd $pkgname-$pkgver
cargo build --release
}
package() {
cd $pkgname-$pkgver
install -D target/release/paswitch-rs -t "$pkgdir"/usr/bin
install -Dm 644 README.md -t "$pkgdir"/usr/share/doc/paswitch-rs
}
|