blob: f2d7e1d1c13562b44ff9164dc022948c7b55507b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
|
# $Id: PKGBUILD 141773 2011-11-02 18:12:47Z andrea $
# Maintainer: Andrea Scarpino <andrea@archlinux.org>
# Contributor: Pierre Schmitz <pierre@archlinux.de>
pkgbase=kdebase
pkgname=('kdebase-dolphin'
'kdebase-kdepasswd'
'kdebase-kdialog'
'kdebase-keditbookmarks'
'kdebase-kfind'
'kdebase-konq-plugins'
'kdebase-konqueror'
'kdebase-lib'
'kdebase-plasma')
pkgver=4.7.3
pkgrel=1
arch=('i686' 'x86_64')
url='http://www.kde.org'
license=('GPL' 'LGPL' 'FDL')
groups=('kde' 'kdebase')
makedepends=('kdelibs' 'pkgconfig' 'cmake' 'automoc4' 'tidyhtml')
source=("http://download.kde.org/stable/${pkgver}/src/kde-baseapps-${pkgver}.tar.bz2")
sha1sums=('952dc26d0d908b41973a8d7b4d27765bf5128d58')
build() {
cd ${srcdir}
mkdir build
cd build
cmake ../kde-baseapps-${pkgver} \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_SKIP_RPATH=ON \
-DCMAKE_INSTALL_PREFIX=/usr
make
}
package_kdebase-dolphin() {
pkgdesc='File Manager'
depends=('kdebase-runtime' 'kdebase-lib')
optdepends=('kdegraphics-svgpart: thumbailers for SVG files'
'kdegraphics-thumbnailers: thumbnailers for graphics file'
'ruby: servicemenu installation')
url="http://kde.org/applications/system/dolphin/"
cd $srcdir/build/dolphin
make DESTDIR=$pkgdir install
cd $srcdir/build/doc/dolphin
make DESTDIR=$pkgdir install
}
package_kdebase-kdepasswd() {
pkgdesc='Change Password'
depends=('kdebase-runtime' 'kdebase-lib')
cd $srcdir/build/kdepasswd
make DESTDIR=$pkgdir install
cd $srcdir/build/doc/kdepasswd
make DESTDIR=$pkgdir install
}
package_kdebase-kdialog() {
pkgdesc='A utility for displaying dialog boxes from shell scripts'
depends=('kdebase-runtime')
cd $srcdir/build/kdialog
make DESTDIR=$pkgdir install
}
package_kdebase-keditbookmarks() {
pkgdesc='Bookmark Organizer and Editor'
depends=('kdebase-runtime')
cd $srcdir/build/keditbookmarks
make DESTDIR=$pkgdir install
}
package_kdebase-kfind() {
pkgdesc='Find Files/Folders'
depends=('kdebase-runtime' 'kdebase-lib')
url="http://kde.org/applications/utilities/kfind/"
install='kdebase.install'
cd $srcdir/build/kfind
make DESTDIR=$pkgdir install
cd $srcdir/build/doc/kfind
make DESTDIR=$pkgdir install
}
package_kdebase-konq-plugins() {
pkgdesc='Extra plugins for Konqueror'
depends=('kdebase-konqueror' 'tidyhtml')
replaces=('konq-plugins')
install='kdebase.install'
cd $srcdir/build/konq-plugins
make DESTDIR=$pkgdir install
}
package_kdebase-konqueror() {
pkgdesc='KDE File Manager & Web Browser'
depends=('kdebase-dolphin' 'kdebase-keditbookmarks')
optdepends=('kwebkitpart: to enable webkit engine')
url="http://kde.org/applications/internet/konqueror/"
install='kdebase.install'
conflicts=('kdebase-nsplugins')
replaces=('kdebase-nsplugins')
for i in konqueror doc/konqueror nsplugins; do
cd $srcdir/build/${i}
make DESTDIR=$pkgdir install
done
}
package_kdebase-lib() {
pkgdesc='KDE libraries for the basic desktop applications'
groups=()
depends=('kdelibs')
cd $srcdir/build/lib
make DESTDIR=$pkgdir install
}
package_kdebase-plasma() {
pkgdesc='Display the contents of folders (User´s home folder as default)'
depends=('kdebase-workspace' 'kdebase-lib')
cd $srcdir/build/plasma
make DESTDIR=$pkgdir install
}
|