[arch-commits] Commit in guayadeque/repos (4 files)

Maxime Gauduin alucryd at archlinux.org
Sat May 30 10:03:29 UTC 2015


    Date: Saturday, May 30, 2015 @ 12:03:29
  Author: alucryd
Revision: 134351

Sigh

Added:
  guayadeque/repos/community-i686/PKGBUILD
  guayadeque/repos/community-i686/guayadeque.install
  guayadeque/repos/community-x86_64/PKGBUILD
  guayadeque/repos/community-x86_64/guayadeque.install

-------------------------------------+
 community-i686/PKGBUILD             |   56 ++++++++++++++++++++++++++++++++++
 community-i686/guayadeque.install   |   13 +++++++
 community-x86_64/PKGBUILD           |   56 ++++++++++++++++++++++++++++++++++
 community-x86_64/guayadeque.install |   13 +++++++
 4 files changed, 138 insertions(+)

Added: community-i686/PKGBUILD
===================================================================
--- community-i686/PKGBUILD	                        (rev 0)
+++ community-i686/PKGBUILD	2015-05-30 10:03:29 UTC (rev 134351)
@@ -0,0 +1,56 @@
+# $Id: PKGBUILD 134349 2015-05-30 10:01:24Z alucryd $
+# Maintainer: Maxime Gauduin <alucryd at archlinux.org>
+# Contributor: Sial <sial at cpan.org>
+# Contributor: Martin Herndl <martin.herndl at gmail.com>
+
+pkgname=guayadeque
+pkgver=0.3.7
+pkgrel=2
+pkgdesc='Lightweight music player'
+arch=('i686' 'x86_64')
+url='http://guayadeque.org/'
+license=('GPL3')
+depends=('curl' 'desktop-file-utils' 'libgpod' 'taglib' 'wxgtk2.8')
+makedepends=('cmake')
+optdepends=('gstreamer0.10-good-plugins: Support for additional file formats'
+            'gvfs: Support for external devices')
+install='guayadeque.install'
+source=("http://downloads.sourceforge.net/project/guayadaque/guayadeque/${pkgver}/guayadeque-${pkgver}.tar.bz2"
+        'guayadeque-link.patch')
+sha256sums=('d23eb1247add0bef8d5fef834294d7cb3d7c5fc20db9022b86f618a13d359938'
+            '9dea639f2464d2aceb0dd00786ba04a6c46e539d6eccc6468ab312f6de9321d4')
+
+prepare() {
+  cd guayadeque-${pkgver}
+
+  patch -Np1 -i ../guayadeque-link.patch
+
+  cd src
+
+  xgettext -d guayadeque -o guayadeque.pot -C --keyword=_ *.cpp
+  mv guayadeque.pot ../po
+}
+
+build() {
+  cd guayadeque-${pkgver}
+
+  if [[ -d build || -f build ]]; then
+    rm -rf build
+  fi
+  mkdir build && cd build
+
+  cmake .. \
+    -DCMAKE_BUILD_TYPE='Release' \
+    -DCMAKE_INSTALL_PREFIX='/usr' \
+    -DwxWidgets_wxrc_EXECUTABLE='/usr/bin/wxrc-2.8' \
+    -DwxWidgets_CONFIG_EXECUTABLE='/usr/bin/wx-config-2.8'
+  make
+}
+
+package() {
+  cd guayadeque-${pkgver}/build
+
+  make DESTDIR="${pkgdir}" install
+}
+
+# vim: ts=2 sw=2 et:


Property changes on: guayadeque/repos/community-i686/PKGBUILD
___________________________________________________________________
Added: svn:executable
## -0,0 +1 ##
+*
\ No newline at end of property
Added: community-i686/guayadeque.install
===================================================================
--- community-i686/guayadeque.install	                        (rev 0)
+++ community-i686/guayadeque.install	2015-05-30 10:03:29 UTC (rev 134351)
@@ -0,0 +1,13 @@
+post_install() {
+  update-desktop-database -q
+}
+
+post_upgrade(){
+  post_install
+}
+
+post_remove(){
+  post_install
+}
+
+# vim: ts=2 sw=2 et:


Property changes on: guayadeque/repos/community-i686/guayadeque.install
___________________________________________________________________
Added: svn:executable
## -0,0 +1 ##
+*
\ No newline at end of property
Added: community-x86_64/PKGBUILD
===================================================================
--- community-x86_64/PKGBUILD	                        (rev 0)
+++ community-x86_64/PKGBUILD	2015-05-30 10:03:29 UTC (rev 134351)
@@ -0,0 +1,56 @@
+# $Id: PKGBUILD 134349 2015-05-30 10:01:24Z alucryd $
+# Maintainer: Maxime Gauduin <alucryd at archlinux.org>
+# Contributor: Sial <sial at cpan.org>
+# Contributor: Martin Herndl <martin.herndl at gmail.com>
+
+pkgname=guayadeque
+pkgver=0.3.7
+pkgrel=2
+pkgdesc='Lightweight music player'
+arch=('i686' 'x86_64')
+url='http://guayadeque.org/'
+license=('GPL3')
+depends=('curl' 'desktop-file-utils' 'libgpod' 'taglib' 'wxgtk2.8')
+makedepends=('cmake')
+optdepends=('gstreamer0.10-good-plugins: Support for additional file formats'
+            'gvfs: Support for external devices')
+install='guayadeque.install'
+source=("http://downloads.sourceforge.net/project/guayadaque/guayadeque/${pkgver}/guayadeque-${pkgver}.tar.bz2"
+        'guayadeque-link.patch')
+sha256sums=('d23eb1247add0bef8d5fef834294d7cb3d7c5fc20db9022b86f618a13d359938'
+            '9dea639f2464d2aceb0dd00786ba04a6c46e539d6eccc6468ab312f6de9321d4')
+
+prepare() {
+  cd guayadeque-${pkgver}
+
+  patch -Np1 -i ../guayadeque-link.patch
+
+  cd src
+
+  xgettext -d guayadeque -o guayadeque.pot -C --keyword=_ *.cpp
+  mv guayadeque.pot ../po
+}
+
+build() {
+  cd guayadeque-${pkgver}
+
+  if [[ -d build || -f build ]]; then
+    rm -rf build
+  fi
+  mkdir build && cd build
+
+  cmake .. \
+    -DCMAKE_BUILD_TYPE='Release' \
+    -DCMAKE_INSTALL_PREFIX='/usr' \
+    -DwxWidgets_wxrc_EXECUTABLE='/usr/bin/wxrc-2.8' \
+    -DwxWidgets_CONFIG_EXECUTABLE='/usr/bin/wx-config-2.8'
+  make
+}
+
+package() {
+  cd guayadeque-${pkgver}/build
+
+  make DESTDIR="${pkgdir}" install
+}
+
+# vim: ts=2 sw=2 et:


Property changes on: guayadeque/repos/community-x86_64/PKGBUILD
___________________________________________________________________
Added: svn:executable
## -0,0 +1 ##
+*
\ No newline at end of property
Added: community-x86_64/guayadeque.install
===================================================================
--- community-x86_64/guayadeque.install	                        (rev 0)
+++ community-x86_64/guayadeque.install	2015-05-30 10:03:29 UTC (rev 134351)
@@ -0,0 +1,13 @@
+post_install() {
+  update-desktop-database -q
+}
+
+post_upgrade(){
+  post_install
+}
+
+post_remove(){
+  post_install
+}
+
+# vim: ts=2 sw=2 et:


Property changes on: guayadeque/repos/community-x86_64/guayadeque.install
___________________________________________________________________
Added: svn:executable
## -0,0 +1 ##
+*
\ No newline at end of property



More information about the arch-commits mailing list