Package Details: deadbeef-plugin-jack-git 20111226-1

Package Base: deadbeef-plugin-jack-git
Description: JACK output plugin for DeaDBeeF
Upstream URL: http://gitorious.org/deadbeef-sm-plugins/pages/Home
Category: multimedia
Licenses: unknown
Submitter: hermes14
Maintainer: hermes14
Last Packager: None
Votes: 4
First Submitted: 2011-12-18 23:32
Last Updated: 2011-12-26 12:54

Dependencies (1)

Required by (0)

Sources

Latest Comments

Comment by Brottweiler

2015-07-19 17:24

Not on AUR4, and gitorious is gone. :/

Comment by rickysheaves

2015-03-27 15:27

To fix: update PKGBUILD $_gitroot variable by replacing "git://" with "https://"

---
# Maintainer: Giancarlo Bianchi <giancarlobianchi76@gmail.com>
pkgname=deadbeef-plugin-jack-git
pkgver=20111226
pkgrel=1
pkgdesc="JACK output plugin for DeaDBeeF"
arch=('i686' 'x86_64')
url="http://gitorious.org/deadbeef-sm-plugins/pages/Home"
license=('unknown')
depends=('deadbeef')
makedepends=('git' 'jack')
conflicts=('jack_output_for_deadbeef')

_gitname=jack
_gitroot=https://gitorious.org/deadbeef-sm-plugins/${_gitname}.git

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"
cd "$srcdir/$_gitname-build"

make
}

package() {
cd "$srcdir/$_gitname-build"
install -Dm0755 jack.so "$pkgdir/usr/lib/deadbeef/jack.so"
}

# vim:set ts=2 sw=2 et:
md5sums=()
---

Also note you can get the compiled plugin here:
http://deadbeef.sourceforge.net/plugins.html

Comment by Brottweiler

2015-03-20 15:40

==> Connecting to GIT server....
Cloning into 'jack'...
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.
==> ERROR: A failure occurred in build().
Aborting...