[arch-commits] Commit in shairplay/repos (3 files)
Ike Devolder
idevolder at archlinux.org
Sun Feb 24 21:29:24 UTC 2019
Date: Sunday, February 24, 2019 @ 21:29:22
Author: idevolder
Revision: 435549
archrelease: copy trunk to community-testing-x86_64
Added:
shairplay/repos/community-testing-x86_64/
shairplay/repos/community-testing-x86_64/PKGBUILD
(from rev 435548, shairplay/trunk/PKGBUILD)
shairplay/repos/community-testing-x86_64/shairplay.service
(from rev 435548, shairplay/trunk/shairplay.service)
-------------------+
PKGBUILD | 54 ++++++++++++++++++++++++++++++++++++++++++++++++++++
shairplay.service | 13 ++++++++++++
2 files changed, 67 insertions(+)
Copied: shairplay/repos/community-testing-x86_64/PKGBUILD (from rev 435548, shairplay/trunk/PKGBUILD)
===================================================================
--- community-testing-x86_64/PKGBUILD (rev 0)
+++ community-testing-x86_64/PKGBUILD 2019-02-24 21:29:22 UTC (rev 435549)
@@ -0,0 +1,54 @@
+# Maintainer: BlackIkeEagle <ike DOT devolder AT gmail DOT com>
+# Contributor: winlu
+
+pkgname=shairplay
+_commit=096b61a
+pkgver=20180824.096b61a
+pkgrel=2
+pkgdesc='Apple airplay and raop protocol server'
+arch=('x86_64')
+url='https://github.com/juhovh/shairplay'
+license=('custom')
+depends=('libao' 'avahi')
+makedepends=('git')
+source=(
+ "$pkgname::git://github.com/juhovh/shairplay.git#commit=$_commit"
+ 'shairplay.service'
+)
+sha256sums=('SKIP'
+ 'f0a176539a6c5be46dc832d054be2f18c3256e5fd34c5f1416c9463bd75c82b3')
+options=(!libtool)
+
+pkgver() {
+ cd "$pkgname"
+ git log -1 --date=short --format="%cd.%h" | tr -d '-'
+}
+
+build() {
+ cd "$pkgname"
+
+ # installing airport.key to /etc/shairplay/
+ sed 's/airport.key/\/etc\/shairplay\/airport.key/' -i "$srcdir/$pkgname"/src/shairplay.c
+
+ ./autogen.sh
+ ./configure --prefix=/usr/
+ make
+}
+
+
+package() {
+ cd "$pkgname"
+ make DESTDIR="$pkgdir" install
+
+ # install systemd service file
+ install -Dm644 "$srcdir/shairplay.service" "$pkgdir/usr/lib/systemd/system/shairplay.service"
+
+ # install key file
+ install -Dm644 airport.key "$pkgdir/etc/shairplay/airport.key"
+
+ # install license file
+ install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+
+ # install documentation
+ install -Dm644 README.md "$pkgdir/usr/share/doc/$pkgname/README.md"
+}
Copied: shairplay/repos/community-testing-x86_64/shairplay.service (from rev 435548, shairplay/trunk/shairplay.service)
===================================================================
--- community-testing-x86_64/shairplay.service (rev 0)
+++ community-testing-x86_64/shairplay.service 2019-02-24 21:29:22 UTC (rev 435549)
@@ -0,0 +1,13 @@
+[Unit]
+Description=Apple airplay and raop protocol server
+Requires=network.target sound.target
+Wants=avahi-daemon.service
+After=avahi-daemon.service
+
+[Service]
+Type=simple
+ExecStart=/usr/bin/shairplay -a %H
+Restart=always
+
+[Install]
+WantedBy=multi-user.target
More information about the arch-commits
mailing list