[arch-commits] Commit in skype-call-recorder/repos (8 files)

Evangelos Foutras foutrelis at nymeria.archlinux.org
Tue Feb 19 07:05:48 UTC 2013


    Date: Tuesday, February 19, 2013 @ 08:05:48
  Author: foutrelis
Revision: 84483

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

Added:
  skype-call-recorder/repos/community-staging-i686/
  skype-call-recorder/repos/community-staging-i686/PKGBUILD
    (from rev 84482, skype-call-recorder/trunk/PKGBUILD)
  skype-call-recorder/repos/community-staging-i686/skype-call-recorder-0.8-dso-fix.patch
    (from rev 84482, skype-call-recorder/trunk/skype-call-recorder-0.8-dso-fix.patch)
  skype-call-recorder/repos/community-staging-i686/skype-call-recorder.install
    (from rev 84482, skype-call-recorder/trunk/skype-call-recorder.install)
  skype-call-recorder/repos/community-staging-x86_64/
  skype-call-recorder/repos/community-staging-x86_64/PKGBUILD
    (from rev 84482, skype-call-recorder/trunk/PKGBUILD)
  skype-call-recorder/repos/community-staging-x86_64/skype-call-recorder-0.8-dso-fix.patch
    (from rev 84482, skype-call-recorder/trunk/skype-call-recorder-0.8-dso-fix.patch)
  skype-call-recorder/repos/community-staging-x86_64/skype-call-recorder.install
    (from rev 84482, skype-call-recorder/trunk/skype-call-recorder.install)

----------------------------------------------------------------+
 community-staging-i686/PKGBUILD                                |   35 ++++++++++
 community-staging-i686/skype-call-recorder-0.8-dso-fix.patch   |   12 +++
 community-staging-i686/skype-call-recorder.install             |   13 +++
 community-staging-x86_64/PKGBUILD                              |   35 ++++++++++
 community-staging-x86_64/skype-call-recorder-0.8-dso-fix.patch |   12 +++
 community-staging-x86_64/skype-call-recorder.install           |   13 +++
 6 files changed, 120 insertions(+)

Copied: skype-call-recorder/repos/community-staging-i686/PKGBUILD (from rev 84482, skype-call-recorder/trunk/PKGBUILD)
===================================================================
--- community-staging-i686/PKGBUILD	                        (rev 0)
+++ community-staging-i686/PKGBUILD	2013-02-19 07:05:48 UTC (rev 84483)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Evangelos Foutras <evangelos at foutrelis.com>
+# Contributor: Tarinaky <tarinaky at hunity.co.uk>
+
+pkgname=skype-call-recorder
+pkgver=0.8
+pkgrel=3
+pkgdesc="Open source tool that allows you to record your Skype calls on Linux"
+arch=('i686' 'x86_64')
+url="http://atdot.ch/scr/"
+license=('GPL')
+depends=('qt4' 'libvorbis' 'lame' 'id3lib' 'hicolor-icon-theme')
+makedepends=('cmake')
+install=skype-call-recorder.install
+source=(http://atdot.ch/scr/files/$pkgver/$pkgname-$pkgver.tar.gz
+        skype-call-recorder-0.8-dso-fix.patch)
+sha256sums=('b115f728e09602cca7aa51479faa868de1f9b7cf887ed3d7c82f4935309c32c6'
+            '1cde36728cf88f479bf317efcacd0cdca8fc7bcd74a6f273beb150ecf8c781da')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  patch -Np1 -i "$srcdir/skype-call-recorder-0.8-dso-fix.patch"
+
+  cmake -DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:

Copied: skype-call-recorder/repos/community-staging-i686/skype-call-recorder-0.8-dso-fix.patch (from rev 84482, skype-call-recorder/trunk/skype-call-recorder-0.8-dso-fix.patch)
===================================================================
--- community-staging-i686/skype-call-recorder-0.8-dso-fix.patch	                        (rev 0)
+++ community-staging-i686/skype-call-recorder-0.8-dso-fix.patch	2013-02-19 07:05:48 UTC (rev 84483)
@@ -0,0 +1,12 @@
+diff -upr skype-call-recorder-0.8.orig/CMakeLists.txt skype-call-recorder-0.8/CMakeLists.txt
+--- skype-call-recorder-0.8.orig/CMakeLists.txt	2013-02-19 08:42:53.000000000 +0200
++++ skype-call-recorder-0.8/CMakeLists.txt	2013-02-19 08:56:55.000000000 +0200
+@@ -75,7 +75,7 @@ SET(LIBRARIES ${LIBRARIES} ${ID3_LIBRARY
+ 
+ FIND_PACKAGE(vorbisenc REQUIRED)
+ INCLUDE_DIRECTORIES(${VORBISENC_INCLUDE_DIR})
+-SET(LIBRARIES ${LIBRARIES} ${VORBISENC_LIBRARY})
++SET(LIBRARIES ${LIBRARIES} ${VORBISENC_LIBRARY} vorbis ogg)
+ 
+ # Qt
+ 

Copied: skype-call-recorder/repos/community-staging-i686/skype-call-recorder.install (from rev 84482, skype-call-recorder/trunk/skype-call-recorder.install)
===================================================================
--- community-staging-i686/skype-call-recorder.install	                        (rev 0)
+++ community-staging-i686/skype-call-recorder.install	2013-02-19 07:05:48 UTC (rev 84483)
@@ -0,0 +1,13 @@
+post_install() {
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}
+
+# vim:set ts=2 sw=2 et:

Copied: skype-call-recorder/repos/community-staging-x86_64/PKGBUILD (from rev 84482, skype-call-recorder/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD	                        (rev 0)
+++ community-staging-x86_64/PKGBUILD	2013-02-19 07:05:48 UTC (rev 84483)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Evangelos Foutras <evangelos at foutrelis.com>
+# Contributor: Tarinaky <tarinaky at hunity.co.uk>
+
+pkgname=skype-call-recorder
+pkgver=0.8
+pkgrel=3
+pkgdesc="Open source tool that allows you to record your Skype calls on Linux"
+arch=('i686' 'x86_64')
+url="http://atdot.ch/scr/"
+license=('GPL')
+depends=('qt4' 'libvorbis' 'lame' 'id3lib' 'hicolor-icon-theme')
+makedepends=('cmake')
+install=skype-call-recorder.install
+source=(http://atdot.ch/scr/files/$pkgver/$pkgname-$pkgver.tar.gz
+        skype-call-recorder-0.8-dso-fix.patch)
+sha256sums=('b115f728e09602cca7aa51479faa868de1f9b7cf887ed3d7c82f4935309c32c6'
+            '1cde36728cf88f479bf317efcacd0cdca8fc7bcd74a6f273beb150ecf8c781da')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  patch -Np1 -i "$srcdir/skype-call-recorder-0.8-dso-fix.patch"
+
+  cmake -DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:

Copied: skype-call-recorder/repos/community-staging-x86_64/skype-call-recorder-0.8-dso-fix.patch (from rev 84482, skype-call-recorder/trunk/skype-call-recorder-0.8-dso-fix.patch)
===================================================================
--- community-staging-x86_64/skype-call-recorder-0.8-dso-fix.patch	                        (rev 0)
+++ community-staging-x86_64/skype-call-recorder-0.8-dso-fix.patch	2013-02-19 07:05:48 UTC (rev 84483)
@@ -0,0 +1,12 @@
+diff -upr skype-call-recorder-0.8.orig/CMakeLists.txt skype-call-recorder-0.8/CMakeLists.txt
+--- skype-call-recorder-0.8.orig/CMakeLists.txt	2013-02-19 08:42:53.000000000 +0200
++++ skype-call-recorder-0.8/CMakeLists.txt	2013-02-19 08:56:55.000000000 +0200
+@@ -75,7 +75,7 @@ SET(LIBRARIES ${LIBRARIES} ${ID3_LIBRARY
+ 
+ FIND_PACKAGE(vorbisenc REQUIRED)
+ INCLUDE_DIRECTORIES(${VORBISENC_INCLUDE_DIR})
+-SET(LIBRARIES ${LIBRARIES} ${VORBISENC_LIBRARY})
++SET(LIBRARIES ${LIBRARIES} ${VORBISENC_LIBRARY} vorbis ogg)
+ 
+ # Qt
+ 

Copied: skype-call-recorder/repos/community-staging-x86_64/skype-call-recorder.install (from rev 84482, skype-call-recorder/trunk/skype-call-recorder.install)
===================================================================
--- community-staging-x86_64/skype-call-recorder.install	                        (rev 0)
+++ community-staging-x86_64/skype-call-recorder.install	2013-02-19 07:05:48 UTC (rev 84483)
@@ -0,0 +1,13 @@
+post_install() {
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}
+
+# vim:set ts=2 sw=2 et:




More information about the arch-commits mailing list