summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 8bf9cbbebbf28e3d02658385e79435bd059d7128 (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
31
32
33
34
35
36
37
38
39
40
# Maintainer: Christoph Gysin <christoph.gysin@gmail.com>

pkgname=librespot-git
_pkgname=librespot
pkgver=357.ddfc28f
pkgrel=2
epoch=1
pkgdesc="An open source client library for Spotify."
arch=('i686' 'x86_64' 'armv7h')
url="https://github.com/plietar/librespot"
license=('MIT')
depends=('protobuf' 'libvorbis' 'alsa-lib')
makedepends=('git' 'cargo' 'rust')
provides=('librespot')
conflicts=('librespot')
source=('git+https://github.com/plietar/librespot')
sha256sums=('SKIP')

pkgver()
{
    cd "$_pkgname"
    echo $(git rev-list --count HEAD).$(git rev-parse --short HEAD)
}

build()
{
    cd "$_pkgname"
    cargo build \
        --no-default-features \
        --features alsa-backend \
        --release
}

package()
{
    install -D -m 755 "$_pkgname"/target/release/librespot \
        "$pkgdir"/usr/bin/librespot
    install -D -m 644 "$_pkgname"/contrib/librespot.service \
        "$pkgdir"/usr/lib/systemd/system/librespot.service
}