mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-25 11:02:13 +08:00
41 lines
1.2 KiB
Bash
41 lines
1.2 KiB
Bash
#
|
|
# Chakra Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer (i686): Phil Miller <philm[at]chakra-project[dog]org>
|
|
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
|
|
|
|
# include global config
|
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
|
|
|
pkgname=amarok
|
|
replaces=('amarok-base' 'amarok-engine-xine' 'amarok-base-mysqlfree')
|
|
pkgver=2.4.0
|
|
pkgrel=2
|
|
pkgdesc="A media player for KDE"
|
|
arch=("i686" "x86_64")
|
|
url="http://amarok.kde.org"
|
|
license=('GPL2' 'LGPL2' 'FDL')
|
|
depends=('kdebase-runtime' 'mysql' 'qtscriptgenerator' 'taglib-extras' 'liblastfm')
|
|
makedepends=('pkgconfig' 'automoc4' 'cmake' 'libgpod' 'libmtp' 'loudmouth' 'docbook-xsl')
|
|
optdepends=("libgpod: support Apple iPod audio devices"
|
|
"libmtp: support for portable media devices"
|
|
"loudmouth: backend needed by mp3tunes for syncing")
|
|
install="${pkgname}.install"
|
|
source=("http://download.kde.org/download.php?url=stable/${pkgname}/${pkgver}/src/${pkgname}-${pkgver}.tar.bz2")
|
|
md5sums=('bdb6ddc8e38d0982a0786ff8ac96d923')
|
|
|
|
build() {
|
|
cd "${srcdir}"
|
|
mkdir build
|
|
cd build
|
|
cmake "../${pkgname}-${pkgver}" \
|
|
-DCMAKE_BUILD_TYPE=Release \
|
|
-DCMAKE_INSTALL_PREFIX=/usr
|
|
make
|
|
}
|
|
|
|
package(){
|
|
cd "${srcdir}/build"
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|