summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 6ea253b72cc43f7ccd7b1885e0ae8c8069debade (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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# Maintainer: Logan Sevcik <logan+aur@sevcik.email>
# Maintainer: Johannes Arnold <johannes.arnold@stud.uni-hannover.de>
_pkgname=shairport-sync
pkgname=$_pkgname-git
pkgver=4.1.dev.r241.gace5537a
pkgrel=1
pkgdesc="AirPlay 2 audio player with multi-room playback"
arch=('i686' 'x86_64' 'arm' 'armv6h' 'armv7h' 'aarch64')
url="https://github.com/mikebrady/shairport-sync"
license=('custom')
makedepends=('autoconf' 'automake' 'libtool' 'xxd' 'libalac' 'mosquitto' 'ffmpeg4.4')
depends=('openssl' 'avahi' 'popt' 'libconfig' 'nqptp' 'ffmpeg4.4' 'libsodium' 'libplist' 'mosquitto' 'alac')
optdepends=('pulseaudio: PulseAudio support'
            'pipewire: PipeWire support'
            'libsoxr: libsoxr-based resampling')
provides=('shairport-sync')
conflicts=('shairport-sync')
source=("$_pkgname::git+https://github.com/mikebrady/shairport-sync#branch=development"
        "shairport-sync.sysusers")
sha256sums=('SKIP'
            'bc2d92254910996e837d1c4c7dd81eddfb96a9f5f0cb2faad9fcb0414ea79a1d')

prepare() {
  cd "$srcdir/$_pkgname"

  sed -i 's|\sgetent| # getent|g' Makefile.am
}

pkgver() {
  cd "$srcdir/$_pkgname"

  git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
}

build() {
  cd "$srcdir/$_pkgname"

  export PKG_CONFIG_PATH="/usr/lib/ffmpeg4.4/pkgconfig/:$PKG_CONFIG_PATH"

  autoreconf -i -f
  ./configure \
    --prefix=/usr \
    --sysconfdir=/etc \
    --with-alsa \
    --with-pa \
    --with-pw \
    --with-jack \
    --with-stdout \
    --with-pipe \
    --with-avahi \
    --with-dns_sd \
    --with-pkg-config \
    --with-configfiles \
    --with-mqtt-client \
    --with-ssl=openssl \
    --with-metadata \
    --with-apple-alac \
    --with-soxr \
    --with-systemd \
    --with-dbus-interface \
    --with-airplay-2
  make
}

package() {
  cd "$srcdir/$_pkgname"

  make DESTDIR="$pkgdir" install
  install -D -m644 "$srcdir"/shairport-sync.sysusers "$pkgdir"/usr/lib/sysusers.d/shairport-sync.conf
  install -D -m644 LICENSES "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}