[arch-commits] Commit in audience (7 files)

Maxime Gauduin alucryd at archlinux.org
Sun Aug 30 19:14:15 UTC 2015


    Date: Sunday, August 30, 2015 @ 21:14:14
  Author: alucryd
Revision: 138993

archrelease: copy trunk to community-i686, community-x86_64

Added:
  audience/repos/
  audience/repos/community-i686/
  audience/repos/community-i686/PKGBUILD
    (from rev 138992, audience/trunk/PKGBUILD)
  audience/repos/community-i686/audience.install
    (from rev 138992, audience/trunk/audience.install)
  audience/repos/community-x86_64/
  audience/repos/community-x86_64/PKGBUILD
    (from rev 138992, audience/trunk/PKGBUILD)
  audience/repos/community-x86_64/audience.install
    (from rev 138992, audience/trunk/audience.install)

-----------------------------------+
 community-i686/PKGBUILD           |   49 ++++++++++++++++++++++++++++++++++++
 community-i686/audience.install   |   15 +++++++++++
 community-x86_64/PKGBUILD         |   49 ++++++++++++++++++++++++++++++++++++
 community-x86_64/audience.install |   15 +++++++++++
 4 files changed, 128 insertions(+)

Copied: audience/repos/community-i686/PKGBUILD (from rev 138992, audience/trunk/PKGBUILD)
===================================================================
--- repos/community-i686/PKGBUILD	                        (rev 0)
+++ repos/community-i686/PKGBUILD	2015-08-30 19:14:14 UTC (rev 138993)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Maxime Gauduin <alucryd at archlinux.org>
+# Contributor: Ner0 <darkelfdarkelf666 at yahoo.co.uk>
+
+pkgname=audience
+pkgver=0.1.0.2
+pkgrel=1
+pkgdesc='The Pantheon Video Player'
+arch=('i686' 'x86_64')
+url='https://launchpad.net/audience'
+license=('GPL3')
+depends=('clutter' 'clutter-gtk' 'desktop-file-utils' 'glib2' 'glibc'
+         'gst-plugins-base-libs' 'gstreamer' 'gtk3' 'libnotify' 'libx11'
+         'libgranite.so')
+makedepends=('clutter-gst' 'cmake' 'vala')
+optdepends=('gst-plugins-base: "Base" plugin libraries'
+            'gst-plugins-good: "Good" plugin libraries'
+            'gst-plugins-bad: "Bad" plugin libraries'
+            'gst-plugins-ugly: "Ugly" plugin libraries')
+install='audience.install'
+source=("https://launchpad.net/audience/freya/${pkgver}/+download/audience-${pkgver}.tar.xz")
+sha256sums=('75da7b75a2f3582cb096c63a8a88f5ce0e67a9ec261e096512af4ead97d2bed0')
+
+prepare() {
+  cd audience-${pkgver}
+
+  if [[ -d build ]]; then
+    rm -rf build
+  fi
+  mkdir build
+}
+
+build() {
+  cd audience-${pkgver}/build
+
+  cmake .. \
+    -DCMAKE_BUILD_TYPE='Release' \
+    -DCMAKE_INSTALL_PREFIX='/usr' \
+    -DGSETTINGS_COMPILE='FALSE'
+  make
+}
+
+package() {
+  cd audience-${pkgver}/build
+
+  make DESTDIR="${pkgdir}" install
+}
+
+# vim: ts=2 sw=2 et:

Copied: audience/repos/community-i686/audience.install (from rev 138992, audience/trunk/audience.install)
===================================================================
--- repos/community-i686/audience.install	                        (rev 0)
+++ repos/community-i686/audience.install	2015-08-30 19:14:14 UTC (rev 138993)
@@ -0,0 +1,15 @@
+post_install() {
+  glib-compile-schemas /usr/share/glib-2.0/schemas
+  gtk-update-icon-cache -fqt /usr/share/icons/hicolor
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}
+
+# vim: ts=2 sw=2 et:

Copied: audience/repos/community-x86_64/PKGBUILD (from rev 138992, audience/trunk/PKGBUILD)
===================================================================
--- repos/community-x86_64/PKGBUILD	                        (rev 0)
+++ repos/community-x86_64/PKGBUILD	2015-08-30 19:14:14 UTC (rev 138993)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Maxime Gauduin <alucryd at archlinux.org>
+# Contributor: Ner0 <darkelfdarkelf666 at yahoo.co.uk>
+
+pkgname=audience
+pkgver=0.1.0.2
+pkgrel=1
+pkgdesc='The Pantheon Video Player'
+arch=('i686' 'x86_64')
+url='https://launchpad.net/audience'
+license=('GPL3')
+depends=('clutter' 'clutter-gtk' 'desktop-file-utils' 'glib2' 'glibc'
+         'gst-plugins-base-libs' 'gstreamer' 'gtk3' 'libnotify' 'libx11'
+         'libgranite.so')
+makedepends=('clutter-gst' 'cmake' 'vala')
+optdepends=('gst-plugins-base: "Base" plugin libraries'
+            'gst-plugins-good: "Good" plugin libraries'
+            'gst-plugins-bad: "Bad" plugin libraries'
+            'gst-plugins-ugly: "Ugly" plugin libraries')
+install='audience.install'
+source=("https://launchpad.net/audience/freya/${pkgver}/+download/audience-${pkgver}.tar.xz")
+sha256sums=('75da7b75a2f3582cb096c63a8a88f5ce0e67a9ec261e096512af4ead97d2bed0')
+
+prepare() {
+  cd audience-${pkgver}
+
+  if [[ -d build ]]; then
+    rm -rf build
+  fi
+  mkdir build
+}
+
+build() {
+  cd audience-${pkgver}/build
+
+  cmake .. \
+    -DCMAKE_BUILD_TYPE='Release' \
+    -DCMAKE_INSTALL_PREFIX='/usr' \
+    -DGSETTINGS_COMPILE='FALSE'
+  make
+}
+
+package() {
+  cd audience-${pkgver}/build
+
+  make DESTDIR="${pkgdir}" install
+}
+
+# vim: ts=2 sw=2 et:

Copied: audience/repos/community-x86_64/audience.install (from rev 138992, audience/trunk/audience.install)
===================================================================
--- repos/community-x86_64/audience.install	                        (rev 0)
+++ repos/community-x86_64/audience.install	2015-08-30 19:14:14 UTC (rev 138993)
@@ -0,0 +1,15 @@
+post_install() {
+  glib-compile-schemas /usr/share/glib-2.0/schemas
+  gtk-update-icon-cache -fqt /usr/share/icons/hicolor
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}
+
+# vim: ts=2 sw=2 et:



More information about the arch-commits mailing list