diff --git a/gmpc/.SRCINFO b/gmpc/.SRCINFO new file mode 100644 index 0000000..ccf36ab --- /dev/null +++ b/gmpc/.SRCINFO @@ -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 + diff --git a/gmpc/.gitrepo b/gmpc/.gitrepo new file mode 100644 index 0000000..80fad13 --- /dev/null +++ b/gmpc/.gitrepo @@ -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 diff --git a/gmpc/PKGBUILD b/gmpc/PKGBUILD new file mode 100644 index 0000000..a16d542 --- /dev/null +++ b/gmpc/PKGBUILD @@ -0,0 +1,34 @@ +# Maintainer: Sebastian +# Contributor: Alexander F. Rødseth +# Contributor: Andrea Scarpino +# Contributor: Tobias Kieslich + +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: