mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
29 lines
951 B
Bash
29 lines
951 B
Bash
#
|
|
# Apps Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer (i686): Phil Miller <philm[at]chakra-project[dog]org>
|
|
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
|
|
|
|
pkgname=openoffice-thumbnail-plugin
|
|
pkgver=1.0.0
|
|
pkgrel=3
|
|
pkgdesc="Plugin for KDE file managers (Dolphin and Konqueror) to preview OpenOffice.org files (Open Document Format) as Thumbnails."
|
|
arch=('i686' 'x86_64')
|
|
url="http://www.kde-apps.org/content/show.php/OpenOffice.org+Thumbnail+plugin?content=110864"
|
|
depends=('kde-workspace')
|
|
makedepends=('cmake' 'automoc4')
|
|
categories=('accessories')
|
|
source=(http://kenai.com/downloads/kde-odf-thumbnail/1.0.0/kde-odf-thumbnail-$pkgver.tar.gz)
|
|
license=('GPL')
|
|
conflicts=('kdemultimedia-thumbnailers')
|
|
md5sums=('edf694939f4b5d5e97c3fe2f91e7cec3')
|
|
|
|
build() {
|
|
cd $srcdir/kde-odf-thumbnail-$pkgver
|
|
mkdir build
|
|
cd build
|
|
cmake -DCMAKE_INSTALL_PREFIX='/usr' ..
|
|
make
|
|
make DESTDIR=$pkgdir install
|
|
}
|