Date: Tuesday, January 3, 2023 @ 01:52:10
Author: felixonmars
Revision: 1374226
archrelease: copy trunk to community-staging-x86_64
Added:
gogglesmm/repos/community-staging-x86_64/
gogglesmm/repos/community-staging-x86_64/PKGBUILD
(from rev 1374225, gogglesmm/trunk/PKGBUILD)
gogglesmm/repos/community-staging-x86_64/fix-build.patch
(from rev 1374225, gogglesmm/trunk/fix-build.patch)
-----------------+
PKGBUILD | 58 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
fix-build.patch | 15 +++++++++++++
2 files changed, 73 insertions(+)
Copied: gogglesmm/repos/community-staging-x86_64/PKGBUILD (from rev 1374225,
gogglesmm/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD (rev 0)
+++ community-staging-x86_64/PKGBUILD 2023-01-03 01:52:10 UTC (rev 1374226)
@@ -0,0 +1,58 @@
+# Maintainer: Sergej Pupykin <[email protected]>
+# Contributor: David Runge <[email protected]>
+# Contributor: Sander Jansen <[email protected]>
+
+pkgname=gogglesmm
+pkgver=1.2.2
+pkgrel=5
+pkgdesc="Music Manager and Player"
+arch=('x86_64')
+url="https://gogglesmm.github.io/"
+license=('GPL3')
+depends=('libepoxy'
+ 'glu'
+ 'libsm'
+ 'libxcursor'
+ 'libxrandr'
+ 'libxi'
+ 'libxft'
+ 'libvorbis'
+ 'libwebp'
+ 'libjpeg-turbo'
+ 'openssl'
+ 'libmad'
+ 'flac'
+ 'faad2'
+ 'opus'
+ 'taglib>=1.9.0'
+ 'sqlite'
+ 'dbus'
+ 'hicolor-icon-theme')
+optdepends=('libpulse: PulseAudio Output'
+ 'alsa-lib: ALSA Output')
+#'python2: import utilities'
+makedepends=('cmake'
+ 'pkgconfig'
+ 'alsa-lib'
+ 'libpulse')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/gogglesmm/gogglesmm/archive/$pkgver.tar.gz"
+ fix-build.patch)
+sha512sums=('5df35eb23a0ea3d4217d8395b42499ed2cbd8d42cc7522c58c7f1364dd8f4e98c7005a81ef71229fdd96040f10b19be29cb6e1854f46b4e4613642b50dda6710'
+
'87a027af5d6c51d494c035f183cf35ee20e8a11437b1c20f0328a7ef8e14f4b1b0bcc963b5d9464ad2185ab7b626d442c411a95d6eec40b3a2a9fba2dc6b6b64')
+
+prepare() {
+ cd "${pkgname}-${pkgver}"
+ patch -p1 < ../fix-build.patch
+}
+
+build() {
+ cd "${pkgname}-${pkgver}"
+ cmake . \
+ -DCMAKE_INSTALL_PREFIX=/usr
+ make
+}
+
+package() {
+ cd "${pkgname}-${pkgver}"
+ make DESTDIR="$pkgdir" install
+}
Copied: gogglesmm/repos/community-staging-x86_64/fix-build.patch (from rev
1374225, gogglesmm/trunk/fix-build.patch)
===================================================================
--- community-staging-x86_64/fix-build.patch (rev 0)
+++ community-staging-x86_64/fix-build.patch 2023-01-03 01:52:10 UTC (rev
1374226)
@@ -0,0 +1,15 @@
+diff --git a/cfox/CMakeLists.txt b/cfox/CMakeLists.txt
+index 47a96f4..d23694f 100644
+--- a/cfox/CMakeLists.txt
++++ b/cfox/CMakeLists.txt
+@@ -49,10 +49,6 @@ if(HAS_CXX_WEXTRA)
+ add_compile_options(-Wextra)
+ endif()
+
+-if(HAS_CXX_WFORMAT)
+- add_compile_options(-Wno-format)
+-endif()
+-
+ if(HAS_CXX_WFATAL)
+ add_compile_options(-Wfatal-errors)
+ endif()