mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-02-12 04:04:38 +08:00
33 lines
854 B
Bash
33 lines
854 B
Bash
|
#
|
||
|
# Apps Packages for Chakra, part of chakra-project.org
|
||
|
#
|
||
|
# maintainer: abveritas@chakra-project.org
|
||
|
|
||
|
pkgname=kaudiocreator
|
||
|
pkgver=1.3
|
||
|
pkgrel=2
|
||
|
pkgdesc="A program for ripping and encoding Audio-CDs, encoding files from disk"
|
||
|
arch=('i686' 'x86_64')
|
||
|
url="http://www.kde-apps.org/content/show.php/KAudioCreator?content=107645"
|
||
|
license=('GPL')
|
||
|
depends=('libkcompactdisc' 'libkcddb' 'taglib' 'libdiscid')
|
||
|
makedepends=('cmake' 'automoc4')
|
||
|
categories=('multimedia')
|
||
|
install="${pkgname}.install"
|
||
|
source=("http://www.kde-apps.org/CONTENT/content-files/107645-${pkgname}-${pkgver}.tar.bz2")
|
||
|
md5sums=('6adce848d3cdc9d80a52d35144890c86')
|
||
|
|
||
|
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
|
||
|
}
|