Date: Sunday, April 23, 2023 @ 12:10:31
Author: eworm
Revision: 1448393
archrelease: copy trunk to community-testing-x86_64
Added:
xfmpc/repos/community-testing-x86_64/
xfmpc/repos/community-testing-x86_64/PKGBUILD
(from rev 1448392, xfmpc/trunk/PKGBUILD)
----------+
PKGBUILD | 31 +++++++++++++++++++++++++++++++
1 file changed, 31 insertions(+)
Copied: xfmpc/repos/community-testing-x86_64/PKGBUILD (from rev 1448392,
xfmpc/trunk/PKGBUILD)
===================================================================
--- community-testing-x86_64/PKGBUILD (rev 0)
+++ community-testing-x86_64/PKGBUILD 2023-04-23 12:10:31 UTC (rev 1448393)
@@ -0,0 +1,31 @@
+# Maintainer: Christian Hesse <[email protected]>
+# Contributor: TDY <[email protected]>
+# Contributor: Marc St-Laurent <[email protected]>
+
+pkgname=xfmpc
+_tag='45bee60326729d65c0b24c64602bf0329e0ce134' # git rev-parse ${pkgver}
+pkgver=0.3.1
+pkgrel=1
+pkgdesc='A graphical GTK+ MPD client focusing on low footprint'
+arch=('x86_64')
+url='https://goodies.xfce.org/projects/applications/xfmpc/'
+license=('GPL')
+depends=('libxfce4ui' 'libmpd')
+makedepends=('git' 'xfce4-dev-tools' 'vala')
+source=("git+https://gitlab.xfce.org/apps/${pkgname}.git#tag=${_tag}")
+sha256sums=('SKIP')
+
+build() {
+ cd "${srcdir}/${pkgname}"
+
+ ./autogen.sh \
+ --prefix=/usr
+ make
+}
+
+package() {
+ cd "${srcdir}/${pkgname}"
+
+ make DESTDIR="${pkgdir}" install
+}
+