subrepo:
  subdir:   "gmpc"
  merged:   "a172c0c"
upstream:
  origin:   "https://aur.archlinux.org/gmpc"
  branch:   "master"
  commit:   "a172c0c"
git-subrepo:
  version:  "0.4.1"
  origin:   "???"
  commit:   "???"
This commit is contained in:
Gabriel Ebner 2020-12-26 19:21:45 +01:00
parent e38b9724d6
commit 388b4a8405
3 changed files with 66 additions and 0 deletions

20
gmpc/.SRCINFO Normal file
View File

@ -0,0 +1,20 @@
pkgbase = gmpc
pkgdesc = MPD client
pkgver = 11.8.16
pkgrel = 6
url = https://gmpclient.org/home
arch = x86_64
license = GPL
makedepends = gob2
makedepends = intltool
makedepends = vala
depends = gtk2
depends = libmpd
depends = libsoup
depends = sqlite
depends = xdg-utils
source = http://download.sarine.nl/Programs/gmpc/11.8/gmpc-11.8.16.tar.gz
sha256sums = a69414f35396846733632ca9619921d7acda537ffd6d49bd84b444945cb76b2c
pkgname = gmpc

12
gmpc/.gitrepo Normal file
View File

@ -0,0 +1,12 @@
; DO NOT EDIT (unless you know what you are doing)
;
; This subdirectory is a git "subrepo", and this file is maintained by the
; git-subrepo command. See https://github.com/git-commands/git-subrepo#readme
;
[subrepo]
remote = https://aur.archlinux.org/gmpc
branch = master
commit = a172c0ccccd74fa0b5b1081ae21b98dfcbb739a0
parent = e38b9724d684fe2cf4d3cc168ef3f75becf6c03c
method = merge
cmdver = 0.4.1

34
gmpc/PKGBUILD Normal file
View File

@ -0,0 +1,34 @@
# Maintainer: Sebastian <asamk@gmx.de>
# Contributor: Alexander F. Rødseth <xyproto@archlinux.org>
# Contributor: Andrea Scarpino <andrea@archlinux.org>
# Contributor: Tobias Kieslich <tobias@archlinux.org>
pkgname=gmpc
pkgver=11.8.16
pkgrel=6
pkgdesc='MPD client'
arch=(x86_64)
url='https://gmpclient.org/home'
license=(GPL)
depends=(gtk2 libmpd libsoup sqlite xdg-utils)
makedepends=(gob2 intltool vala)
source=("http://download.sarine.nl/Programs/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.gz")
sha256sums=('a69414f35396846733632ca9619921d7acda537ffd6d49bd84b444945cb76b2c')
prepare() {
sed -i 's/GNOME;AudioVideo;/GTK;AudioVideo;Player;/' \
"$pkgname-$pkgver/data/gmpc.desktop.in"
}
build() {
cd "$pkgname-$pkgver"
./configure --prefix=/usr --disable-unique
make CFLAGS+='-lm'
}
package() {
make -C "$pkgname-$pkgver" DESTDIR="$pkgdir" install
}
# vim: ts=2 sw=2 et: