Package Details: mpvc-git 1.3.r24.g6890b36-1

Git Clone URL: https://aur.archlinux.org/mpvc-git.git (read-only, click to copy)
Package Base: mpvc-git
Description: A mpc-like control interface for mpv.
Upstream URL: https://github.com/lwilletts/mpvc
Keywords: mpv
Licenses: MIT
Provides: mpvc
Submitter: tudor
Maintainer: lwilletts
Last Packager: lwilletts
Votes: 2
Popularity: 0.000000
First Submitted: 2016-03-19 20:06 (UTC)
Last Updated: 2022-06-12 16:25 (UTC)

Latest Comments

m040601 commented on 2022-06-09 15:30 (UTC) (edited on 2022-06-09 15:35 (UTC) by m040601)

Currently fails to build,

==> Retrieving sources...
  -> Cloning mpvc git repo...
Cloning into bare repository '/dev/shm/aurydesty/mpvc-git/mpvc'...
fatal: unable to connect to github.com:
github.com[0: 140.82.121.4]: errno=Connection timed out

==> ERROR: Failure while downloading mpvc git repo
    Aborting...
 -> error downloading sources: mpvc-git 
     context: exit status 1 

I has a strange "git://" in the source instead of using "https://"

source=('git://github.com/wildefyr/mpvc')

As stated before

github.com/wildefyr

doesnt exist anymore. It should be,

github.com/lwilletts

m040601 commented on 2021-07-15 01:09 (UTC)

Needs update the url has changed:

from

Upstream URL:   https://github.com/wildefyr/mpvc

to

https://github.com/lwilletts/mpvc

aa13q commented on 2018-04-05 21:22 (UTC)

# Maintainer: Tudor Roman <xenogenesis at openmailbox dot org>
# Contributor: Alexey Andreyev <aa13q@ya.ru>

pkgname=mpvc-git
pkgver=1.2.r105.g44a746c
pkgrel=1
pkgdesc="A mpc-like control interface for mpv"
arch=('armv7h' 'i686' 'x86_64' 'aarch64')
url="https://github.com/lwilletts/${pkgname%-git}"
license=('MIT')
depends=('mpv' 'socat')
makedepends=('git')
optdepends=()
provides=("${pkgname%-git}")
conflicts=()
source=(
  "${pkgname}::git+${url}.git"
)
sha256sums=('SKIP')

pkgver() {
  cd "${srcdir}/${pkgname}"
  ( set -o pipefail
    git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g' ||
    printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
  ) 2>/dev/null
}

build() {
  cd "$pkgname"
}

package() {
  cd "$pkgname"
  mkdir -p "$pkgdir/usr/bin"
  make DESTDIR="$pkgdir" PREFIX="/usr" install
}