mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-02-06 01:27:18 +08:00
41 lines
1.1 KiB
Bash
41 lines
1.1 KiB
Bash
#
|
|
# Apps packages of Chakra, part of chakra-project.org
|
|
#
|
|
# Maintainer: Adrin Chaves Fernandez (Gallaecio) <adriyetichaves@gmail.com>
|
|
|
|
pkgname=yarock
|
|
_pkgname=Yarock
|
|
pkgver=0.9.65
|
|
#_pkgrel=11
|
|
#_pkgver=${pkgver}_${_pkgrel}
|
|
pkgrel=1
|
|
pkgdesc="A Qt4 Modern Music Player with collection browser based on cover art."
|
|
arch=('x86_64')
|
|
url="http://qt-apps.org/content/show.php?content=129372"
|
|
screenshot="http://qt-apps.org/CONTENT/content-pre2/129372-2.png"
|
|
license=('GPL3')
|
|
depends=('qt' 'taglib' 'phonon' 'boost' 'qjson')
|
|
categories=('multimedia')
|
|
#source=("http://launchpad.net/$pkgname/trunk/$pkgver/+download/${_pkgname}_${_pkgver}_source.tar.gz")
|
|
source=("http://launchpad.net/$pkgname/trunk/$pkgver/+download/${_pkgname}_${pkgver}_source.tar.gz")
|
|
screenshot=('http://qt-apps.org/CONTENT/content-pre1/129372-1.png')
|
|
md5sums=('0b69be0a4e539654fabb642081e2895b')
|
|
|
|
build() {
|
|
cd $srcdir/${_pkgname}_${pkgver}_source
|
|
|
|
[[ -d build ]] && rm -r build
|
|
mkdir build && cd build
|
|
cmake \
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
|
|
..
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd $srcdir/${_pkgname}_${pkgver}_source/build
|
|
make DESTDIR=$pkgdir install
|
|
}
|
|
|