summaryrefslogtreecommitdiffstats
path: root/kdelibs/Pkgfile
blob: d9d127408832d20472339b5588105e7717fe329d (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
# Description: Librairies pour KDE 4
# URL: http://www.kde.org
# Maintainer: KDE Project : https://projects.kde.org/projects/kde
# Packager: lesibel at free dot fr
# Depends on: qt,cmake,automoc4,phonon,strigi,attica,libdbusmenu-qt,polkit-qt,shared-desktop-ontologies,xorg-libxscrnsaver,soprano,qca,acl,grantlee,aspell,enchant,avahi,ca-certificates,pulseaudio,qtwebkit,media-player-info
# Run on: phonon,strigi,attica,libdbusmenu-qt,polkit-qt,shared-desktop-ontologies,xorg-libxscrnsaver,soprano,qca,acl,grantlee,aspell,enchant,avahi,ca-certificates,pulseaudio,qtwebkit,media-player-info

name=kdelibs
version=4.9.0
release=1
source=(ftp://ftp.kde.org/pub/kde/stable/$version/src/$name-$version.tar.xz
	kde-applications-menu.patch)

build() {
	cd $name-$version

	patch -p1 -i ../kde-applications-menu.patch
	mkdir build
	cd build
	cmake ../ -DCMAKE_BUILD_TYPE=Release \
		-DKDE_DISTRIBUTION_TEXT='NuTyX' \
                -DCMAKE_INSTALL_PREFIX=/usr \
                -DSYSCONF_INSTALL_DIR=/etc \
	        -DKDE_DEFAULT_HOME='.kde' \
                -DHTML_INSTALL_DIR=/usr/share/doc/kde/html \
	        -DKAUTH_BACKEND=PolkitQt-1 \
                -DWITH_FAM=OFF \
		-DCMAKE_SKIP_RPATH=ON \
		-DCMAKE_{SHARED,MODULE,EXE}_LINKER_FLAGS='-Wl,--no-undefined -Wl,--as-needed'
	make
	make DESTDIR=$PKG install
	rm -f $PKG/usr/share/apps/kssl/ca-bundle.crt
       	ln -sf /etc/ssl/certs/ca-certificates.crt $PKG/usr/share/apps/kssl/ca-bundle.crt
}