mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
Initial pithos and pianobar import
This commit is contained in:
parent
8de1d0a74a
commit
893fea7e06
3 changed files with 86 additions and 0 deletions
25
aur/pianobar/PKGBUILD
Normal file
25
aur/pianobar/PKGBUILD
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
# Maintainer: Mitch Bigelow <ipha00@gmail.com>
|
||||||
|
|
||||||
|
pkgname=pianobar
|
||||||
|
pkgver=2012.06.24
|
||||||
|
pkgrel=0
|
||||||
|
pkgdesc="console-based frontend for Pandora"
|
||||||
|
url="http://6xq.net/projects/pianobar"
|
||||||
|
arch=('arm' 'i686' 'x86_64')
|
||||||
|
license=('MIT')
|
||||||
|
depends=('libao' 'faad2' 'libmad' 'gnutls' 'json-c')
|
||||||
|
source=(http://6xq.net/projects/pianobar/pianobar-$pkgver.tar.bz2)
|
||||||
|
sha256sums=('a80307dcfc8786c28d6025f54820664eca0cf26f888bd608c95d486762f908aa')
|
||||||
|
_builddir="$pkgname-$pkgver"
|
||||||
|
|
||||||
|
build() {
|
||||||
|
cd "$_builddir"
|
||||||
|
make
|
||||||
|
}
|
||||||
|
|
||||||
|
package() {
|
||||||
|
cd "$_builddir"
|
||||||
|
|
||||||
|
make DESTDIR=$pkgdir PREFIX=/usr install
|
||||||
|
install -vDm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
|
||||||
|
}
|
49
aur/pithos-git/PKGBUILD
Normal file
49
aur/pithos-git/PKGBUILD
Normal file
|
@ -0,0 +1,49 @@
|
||||||
|
# Contributor: Matthew Bauer <mjbauer95@gmail.com>
|
||||||
|
# Maintainer: Steven Allen <steven@stebalien.com>
|
||||||
|
|
||||||
|
_pkgname=pithos
|
||||||
|
pkgname=pithos-git
|
||||||
|
pkgver=20120718
|
||||||
|
pkgrel=1
|
||||||
|
pkgdesc='Pandora Internet Radio player for GNOME'
|
||||||
|
arch=('any')
|
||||||
|
url="http://kevinmehall.net/p/pithos/"
|
||||||
|
license=('GPL3')
|
||||||
|
depends=('python2' 'pygtk' 'python-notify' 'dbus-python' 'gstreamer0.10-python' 'gstreamer0.10-good-plugins' 'gstreamer0.10-bad-plugins' 'gstreamer0.10-base-plugins' 'pyxdg' 'hicolor-icon-theme')
|
||||||
|
makedepends=('git' 'python2-distribute' 'python2-distutils-extra')
|
||||||
|
#makedepends=('git' 'python2-distribute')
|
||||||
|
optdepends=('python-keybinder: for media keys plugin'
|
||||||
|
'gstreamer0.10-ugly-plugins: MP3 playback support')
|
||||||
|
provides=("$_pkgname")
|
||||||
|
conflicts=("$_pkgname-bzr" "$_pkgname")
|
||||||
|
source=("$pkgname.install")
|
||||||
|
install="$pkgname.install"
|
||||||
|
md5sums=('c9db50a1fd3d86efe4d6f8a7b044e718')
|
||||||
|
|
||||||
|
_gitroot="git://github.com/kevinmehall/pithos.git"
|
||||||
|
_gitname="$_pkgname"
|
||||||
|
|
||||||
|
build() {
|
||||||
|
cd "$srcdir"
|
||||||
|
msg "Connecting to GIT server...."
|
||||||
|
|
||||||
|
if [[ -d "$_gitname" ]]; then
|
||||||
|
cd "$_gitname" && git pull origin
|
||||||
|
msg "The local files are updated."
|
||||||
|
else
|
||||||
|
git clone "$_gitroot" "$_gitname"
|
||||||
|
fi
|
||||||
|
|
||||||
|
msg "GIT checkout done or server timeout"
|
||||||
|
msg "Starting build..."
|
||||||
|
|
||||||
|
rm -rf "$srcdir/$_gitname-build"
|
||||||
|
git clone "$srcdir/$_gitname" "$srcdir/$_gitname-build"
|
||||||
|
}
|
||||||
|
|
||||||
|
package() {
|
||||||
|
cd "$srcdir/$_gitname-build"
|
||||||
|
python2 setup.py install --optimize=1 --prefix=/usr --root="${pkgdir}/"
|
||||||
|
}
|
||||||
|
|
||||||
|
# vim:set ts=2 sw=2 et:
|
12
aur/pithos-git/pithos-git.install
Normal file
12
aur/pithos-git/pithos-git.install
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
post_install() {
|
||||||
|
update-desktop-database -q
|
||||||
|
gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
|
||||||
|
}
|
||||||
|
|
||||||
|
post_upgrade() {
|
||||||
|
post_install $1
|
||||||
|
}
|
||||||
|
|
||||||
|
post_remove() {
|
||||||
|
post_install $1
|
||||||
|
}
|
Loading…
Reference in a new issue