desktop/k3b/PKGBUILD

41 lines
1.2 KiB
Bash
Raw Normal View History

2017-05-02 05:29:40 +08:00
# Include global configuration
source ../kdeapps.conf
2010-05-31 00:39:40 +08:00
pkgname=k3b
2017-05-02 05:29:40 +08:00
pkgver=${_kdever}
pkgrel=1
2010-05-31 00:39:40 +08:00
pkgdesc="Feature-rich and easy to handle CD burning application"
2014-11-04 10:44:27 +08:00
arch=("x86_64")
url="http://sourceforge.net/projects/k3b/"
2010-05-31 00:39:40 +08:00
license=('GPL')
2017-05-02 05:29:40 +08:00
depends=('libkcddb' 'kcmutils' 'knotifyconfig' 'libmad' 'kfilemetadata' 'knewstuff'
'libmpcdec' 'libdvdread' 'libburn' 'qt5-webkit' 'hicolor-icon-theme' 'taglib' 'libsamplerate')
makedepends=('extra-cmake-modules' 'kdoctools' 'python3')
2010-05-31 00:39:40 +08:00
optdepends=('dvd+rw-tools: for dvd burning support'
2014-11-04 10:44:27 +08:00
'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')
install=$pkgname.install
2017-05-02 05:29:40 +08:00
options=('debug')
source=("$_mirror/${pkgname}-$_kdever.tar.xz"{,.sig})
sha256sums=(`grep ${pkgname}-$_kdever.tar.xz ../kdeapps.sums | cut -d " " -f1`
'SKIP')
2017-08-11 00:14:23 +08:00
validpgpkeys=(${Avalidpgpkeys[@]})
2017-05-02 05:29:40 +08:00
2013-10-15 02:37:58 +08:00
prepare() {
2017-05-02 05:29:40 +08:00
mkdir -p build
2013-10-15 02:37:58 +08:00
}
2014-11-04 10:44:27 +08:00
2010-05-31 00:39:40 +08:00
build() {
cd build
2017-05-02 05:29:40 +08:00
cmake_kf5 ../${pkgname}-${pkgver}
make
}
package() {
2013-10-15 02:37:58 +08:00
cd build
2017-05-02 05:29:40 +08:00
make DESTDIR=${pkgdir} install
2010-05-31 00:39:40 +08:00
}