mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
Add aur/shairplay-git: kodi16 needs latest git of shairplay
This commit is contained in:
parent
39014026c1
commit
453bea1410
2 changed files with 59 additions and 0 deletions
45
aur/shairplay-git/PKGBUILD
Normal file
45
aur/shairplay-git/PKGBUILD
Normal file
|
@ -0,0 +1,45 @@
|
|||
# Maintainer: winlu
|
||||
# Contributor: BlackIkeEagle <ike DOT devolder AT gmail DOT com>
|
||||
# Contributor: skunark <jim.casteel@torpedia.org>
|
||||
# Contributor: graysky <graysky@archlinux.us>
|
||||
|
||||
pkgname=shairplay-git
|
||||
_gitname=shairplay
|
||||
pkgver=130.0f41ade
|
||||
pkgrel=1
|
||||
pkgdesc='Apple airplay and raop protocol server'
|
||||
arch=('i686' 'x86_64')
|
||||
url='https://github.com/juhovh/shairplay'
|
||||
license=('GPLv3')
|
||||
depends=('avahi' 'libao')
|
||||
makedepends=('git')
|
||||
source=("$_gitname::git://github.com/juhovh/shairplay.git"
|
||||
"shairplay.service")
|
||||
sha256sums=('SKIP'
|
||||
'ac18abf1fd5c6735bbeee5918b528b9df83ec85141b46e3bec44b5abe55dfe52')
|
||||
options=(!libtool)
|
||||
provides=('libshairport' 'shairplay')
|
||||
conflicts=('libshairport' 'shairplay')
|
||||
|
||||
pkgver() {
|
||||
cd "$srcdir/$_gitname"
|
||||
echo $(git rev-list --count HEAD).$(git rev-parse --short HEAD)
|
||||
}
|
||||
|
||||
build() {
|
||||
cd $_gitname
|
||||
./autogen.sh
|
||||
./configure --prefix=/usr/
|
||||
# installing airport.key to /etc/shairplay/
|
||||
sed 's/airport.key/\/etc\/shairplay\/airport.key/' -i "$srcdir/$_gitname"/src/shairplay.c
|
||||
make
|
||||
}
|
||||
|
||||
package() {
|
||||
install -Dm755 "${srcdir}"/shairplay.service "${pkgdir}"/usr/lib/systemd/system/shairplay.service
|
||||
cd $_gitname
|
||||
make DESTDIR="$pkgdir" install
|
||||
install -Dm644 airport.key "${pkgdir}"/etc/shairplay/airport.key
|
||||
install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
|
||||
install -Dm644 README.md "${pkgdir}"/usr/share/doc/${pkgname}/README.md
|
||||
}
|
14
aur/shairplay-git/shairplay.service
Normal file
14
aur/shairplay-git/shairplay.service
Normal file
|
@ -0,0 +1,14 @@
|
|||
[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
|
||||
|
Loading…
Reference in a new issue