desktop/shairplay/PKGBUILD
2017-03-17 18:23:43 +00:00

57 lines
1.3 KiB
Bash

# $Id$
# Maintainer: BlackIkeEagle <ike DOT devolder AT gmail DOT com>
# Contributor: winlu
pkgname=shairplay
_commit=ce80e00
pkgver=20160101.ce80e00
pkgrel=1
pkgdesc='Apple airplay and raop protocol server'
arch=('i686' 'x86_64')
url='https://github.com/juhovh/shairplay'
license=('custom')
depends=('libao')
optdepends=('avahi: to run the server')
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"
}