mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-26 15:32:15 +08:00
35 lines
1008 B
Bash
35 lines
1008 B
Bash
#
|
|
# Apps Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# Maintainer: Adrián Chaves Fernández (Gallaecio) <adriyetichaves gmail.com>
|
|
# Contributor: Dany Martineau <dany.luc.martineau@gmail.com>
|
|
|
|
pkgname=kmediafactory
|
|
pkgver=0.8.1
|
|
pkgrel=1
|
|
pkgdesc="An easy to use template based dvd authoring tool."
|
|
url="http://aryhma.oy.cx/damu/software/kmediafactory/index.html"
|
|
license="GPL"
|
|
arch=('i686' 'x86_64')
|
|
depends=('dvdauthor' 'dvd-slideshow' 'ffmpeg' 'imagemagick' 'kdelibs' 'libdv' 'libdvdread' 'mjpegtools' 'xine-lib' 'zip')
|
|
makedepends=('automoc4' 'cmake' 'docbook-xsl')
|
|
optdepends=('k3b' 'kaffeine')
|
|
source=(http://kmediafactory.googlecode.com/files/$pkgname-$pkgver.tar.bz2)
|
|
md5sums=('e13e4682c78d6f49647551aeab7a1235')
|
|
|
|
build() {
|
|
cd $srcdir/$pkgname-$pkgver
|
|
[[ -d build ]] && rm -r build
|
|
mkdir build && cd build
|
|
cmake \
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
|
|
..
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd $srcdir/$pkgname-$pkgver/build
|
|
make DESTDIR=$pkgdir install
|
|
}
|