mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-25 11:02:13 +08:00
36 lines
1.1 KiB
Bash
36 lines
1.1 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>
|
|
# contributor (x86_64): Giuseppe Calà <jiveaxe@gmail.com>
|
|
|
|
pkgname=clementine
|
|
pkgver=0.6
|
|
pkgrel=3
|
|
pkgdesc="A modern music player and library organiser and a port of Amarok 1.4, with some features rewritten to take advantage of Qt4. "
|
|
url="http://www.clementine-player.org/"
|
|
license="GPL"
|
|
arch=('i686' 'x86_64')
|
|
depends=('glew' 'liblastfm' 'taglib' 'gstreamer0.10' 'libmtp' 'hicolor-icon-theme')
|
|
makedepends=('mesa' 'cmake' 'boost')
|
|
optdepends=(
|
|
'gstreamer0.10-base-plugins: for more open formats'
|
|
'gstreamer0.10-good-plugins: still free'
|
|
'gstreamer0.10-ugly-plugins: damn if you really need those'
|
|
)
|
|
source=(http://clementine-player.googlecode.com/files/${pkgname}-${pkgver}.tar.gz)
|
|
md5sums=('7b7ee4c16f648a15eb2cff9ed2163e0e')
|
|
install=(clementine.install)
|
|
|
|
build() {
|
|
cd ${srcdir}/$pkgname-$pkgver
|
|
cmake . -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd ${srcdir}/$pkgname-$pkgver
|
|
make DESTDIR=${pkgdir} install
|
|
}
|