mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
43 lines
1.2 KiB
Bash
43 lines
1.2 KiB
Bash
#
|
|
# Apps Packages for Chakra, part of chakra-project.org
|
|
#
|
|
|
|
pkgname=k3b
|
|
pkgver=2.0.3a
|
|
pkgrel=1
|
|
pkgdesc="Feature-rich and easy to handle CD burning application"
|
|
arch=("x86_64")
|
|
url="http://sourceforge.net/projects/k3b/"
|
|
license=('GPL')
|
|
depends=('kde-runtime' 'libkcddb' 'libkcompactdisc' 'libsamplerate' 'libmad'
|
|
'ffmpeg>=0.5' 'taglib>=1.4' 'libmpcdec>=1.2.5' 'libdvdread>=4.1.3' 'cdrkit' 'shared-mime-info' 'libxft' 'libmusicbrainz3')
|
|
makedepends=('cmake' 'automoc4' 'docbook-xml')
|
|
optdepends=('dvd+rw-tools: for dvd burning support'
|
|
'vcdimager: for vcd burning support'
|
|
'transcode: for advanced mpeg conversion support'
|
|
'emovix: for bootable multimedia cd/dvd support'
|
|
'cdrdao: for disk-at-once (DAO) mode support'
|
|
'cdparanoia: for cd ripping support')
|
|
categories=('multimedia')
|
|
install=$pkgname.install
|
|
source=("http://download.kde.org/stable/${pkgname}/${pkgname}-${pkgver}.tar.xz")
|
|
sha256sums=('2d0bb2746802c1d3ad7ddd10e29234cf2053074f376feb200306a5570c39c081')
|
|
|
|
prepare() {
|
|
cd ${pkgname}-2.0.3
|
|
}
|
|
|
|
build() {
|
|
mkdir -p build
|
|
cd build
|
|
cmake ../${pkgname}-2.0.3 \
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
-DCMAKE_BUILD_TYPE=Release
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd build
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|