mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
42 lines
1.2 KiB
Bash
42 lines
1.2 KiB
Bash
# Contributor: Matthew Bauer <mjbauer95@gmail.com>
|
|
# Contributor: TingPing <tingping@fedoraproject.org>
|
|
# Maintainer: Steven Allen <steven@stebalien.com>
|
|
|
|
_pkgname=pithos
|
|
pkgname=$_pkgname-git
|
|
pkgver=1.1.1.r80.g2edf730
|
|
pkgrel=1
|
|
pkgdesc='Native Pandora Radio client'
|
|
arch=('any')
|
|
url="https://pithos.github.io/"
|
|
license=('GPL3')
|
|
depends=('gtk3' 'python-gobject' 'libsecret' 'python-cairo'
|
|
'gst-plugins-good' 'gst-plugins-bad' 'gst-plugins-base')
|
|
optdepends=('libkeybinder3: for media keys plugin'
|
|
'gst-plugins-ugly: MP3 playback support'
|
|
'libappindicator-gtk3: Unity indicator applet support'
|
|
'python-pacparser: PAC proxy support'
|
|
'python-pylast: Last.fm scrobbling support'
|
|
'libnotify: Notification support'
|
|
'python-dbus: MPRIS/Screensaver Pause/Gnome mediakeys support')
|
|
makedepends=('git' 'automake' 'autoconf' 'intltool')
|
|
provides=("$_pkgname")
|
|
conflicts=("$_pkgname-bzr" "$_pkgname")
|
|
sha256sums=('SKIP')
|
|
source=('git+https://github.com/pithos/pithos.git')
|
|
|
|
pkgver() {
|
|
cd "$srcdir/$_pkgname"
|
|
git describe --tags | sed 's/-/.r/; s/-/./'
|
|
}
|
|
|
|
build() {
|
|
cd "$srcdir/$_pkgname"
|
|
./autogen.sh --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$srcdir/$_pkgname"
|
|
DESTDIR="$pkgdir" make install
|
|
}
|