[arch-commits] Commit in amarok/repos (6 files)
Antonio Rojas
arojas at archlinux.org
Wed Apr 15 17:38:06 UTC 2015
Date: Wednesday, April 15, 2015 @ 19:38:06
Author: arojas
Revision: 237180
archrelease: copy trunk to testing-i686, testing-x86_64
Added:
amarok/repos/testing-i686/
amarok/repos/testing-i686/PKGBUILD
(from rev 237179, amarok/trunk/PKGBUILD)
amarok/repos/testing-i686/amarok.install
(from rev 237179, amarok/trunk/amarok.install)
amarok/repos/testing-x86_64/
amarok/repos/testing-x86_64/PKGBUILD
(from rev 237179, amarok/trunk/PKGBUILD)
amarok/repos/testing-x86_64/amarok.install
(from rev 237179, amarok/trunk/amarok.install)
-------------------------------+
testing-i686/PKGBUILD | 46 ++++++++++++++++++++++++++++++++++++++++
testing-i686/amarok.install | 12 ++++++++++
testing-x86_64/PKGBUILD | 46 ++++++++++++++++++++++++++++++++++++++++
testing-x86_64/amarok.install | 12 ++++++++++
4 files changed, 116 insertions(+)
Copied: amarok/repos/testing-i686/PKGBUILD (from rev 237179, amarok/trunk/PKGBUILD)
===================================================================
--- testing-i686/PKGBUILD (rev 0)
+++ testing-i686/PKGBUILD 2015-04-15 17:38:06 UTC (rev 237180)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Ronald van Haren <ronald at archlinux.org>
+# Contributor: Andrea Scarpino <andrea at archlinux.org>
+# Contributor: damir <damir at archlinux.org>
+
+pkgname=amarok
+pkgver=2.8.0
+pkgrel=6
+pkgdesc="The powerful music player for KDE"
+arch=("i686" "x86_64")
+url="http://amarok.kde.org/"
+license=('GPL2' 'LGPL2.1' 'FDL')
+depends=('kdebase-runtime' 'mariadb' 'qtscriptgenerator' 'taglib-extras'
+ 'liblastfm' 'ffmpeg' 'libofa' 'qjson')
+makedepends=('pkgconfig' 'automoc4' 'cmake' 'libgpod' 'libmtp' 'loudmouth'
+ 'libmygpo-qt' 'mesa' 'clamz')
+optdepends=("libgpod: support for Apple iPod audio devices"
+ "libmtp: support for portable media devices"
+ "loudmouth: backend needed by mp3tunes for syncing"
+ "ifuse: support for Apple iPod Touch and iPhone"
+ "libmygpo-qt: gpodder.net Internet Service"
+ "clamz: allow to download songs from Amazon.com"
+ "gst-libav: MP3 codecs")
+install="${pkgname}.install"
+source=("http://download.kde.org/stable/${pkgname}/${pkgver}/src/${pkgname}-${pkgver}.tar.bz2")
+sha1sums=('e76ccd53c05d57f9457d74cd08c2c41383c00937')
+
+prepare() {
+ mkdir build
+}
+
+build() {
+ cd build
+ cmake ../${pkgname}-${pkgver} \
+ -DCMAKE_BUILD_TYPE=Release \
+ -DKDE4_BUILD_TESTS=OFF \
+ -DCMAKE_INSTALL_PREFIX=/usr \
+ -DWITH_NepomukCore=OFF \
+ -DWITH_Soprano=OFF
+ make
+}
+
+package(){
+ cd build
+ make DESTDIR="${pkgdir}" install
+}
Copied: amarok/repos/testing-i686/amarok.install (from rev 237179, amarok/trunk/amarok.install)
===================================================================
--- testing-i686/amarok.install (rev 0)
+++ testing-i686/amarok.install 2015-04-15 17:38:06 UTC (rev 237180)
@@ -0,0 +1,12 @@
+post_install() {
+ xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+ update-desktop-database -q
+}
+
+post_upgrade() {
+ post_install
+}
+
+post_remove() {
+ post_install
+}
Copied: amarok/repos/testing-x86_64/PKGBUILD (from rev 237179, amarok/trunk/PKGBUILD)
===================================================================
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2015-04-15 17:38:06 UTC (rev 237180)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Ronald van Haren <ronald at archlinux.org>
+# Contributor: Andrea Scarpino <andrea at archlinux.org>
+# Contributor: damir <damir at archlinux.org>
+
+pkgname=amarok
+pkgver=2.8.0
+pkgrel=6
+pkgdesc="The powerful music player for KDE"
+arch=("i686" "x86_64")
+url="http://amarok.kde.org/"
+license=('GPL2' 'LGPL2.1' 'FDL')
+depends=('kdebase-runtime' 'mariadb' 'qtscriptgenerator' 'taglib-extras'
+ 'liblastfm' 'ffmpeg' 'libofa' 'qjson')
+makedepends=('pkgconfig' 'automoc4' 'cmake' 'libgpod' 'libmtp' 'loudmouth'
+ 'libmygpo-qt' 'mesa' 'clamz')
+optdepends=("libgpod: support for Apple iPod audio devices"
+ "libmtp: support for portable media devices"
+ "loudmouth: backend needed by mp3tunes for syncing"
+ "ifuse: support for Apple iPod Touch and iPhone"
+ "libmygpo-qt: gpodder.net Internet Service"
+ "clamz: allow to download songs from Amazon.com"
+ "gst-libav: MP3 codecs")
+install="${pkgname}.install"
+source=("http://download.kde.org/stable/${pkgname}/${pkgver}/src/${pkgname}-${pkgver}.tar.bz2")
+sha1sums=('e76ccd53c05d57f9457d74cd08c2c41383c00937')
+
+prepare() {
+ mkdir build
+}
+
+build() {
+ cd build
+ cmake ../${pkgname}-${pkgver} \
+ -DCMAKE_BUILD_TYPE=Release \
+ -DKDE4_BUILD_TESTS=OFF \
+ -DCMAKE_INSTALL_PREFIX=/usr \
+ -DWITH_NepomukCore=OFF \
+ -DWITH_Soprano=OFF
+ make
+}
+
+package(){
+ cd build
+ make DESTDIR="${pkgdir}" install
+}
Copied: amarok/repos/testing-x86_64/amarok.install (from rev 237179, amarok/trunk/amarok.install)
===================================================================
--- testing-x86_64/amarok.install (rev 0)
+++ testing-x86_64/amarok.install 2015-04-15 17:38:06 UTC (rev 237180)
@@ -0,0 +1,12 @@
+post_install() {
+ xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+ update-desktop-database -q
+}
+
+post_upgrade() {
+ post_install
+}
+
+post_remove() {
+ post_install
+}
More information about the arch-commits
mailing list