blob: 667203e1cd0fd400bf6c0285cd1f1ee583909f2a (
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
|
# Description: Pour écrire des applications KDE dans différents langages
# URL: http://www.kde.org
# Maintainer: NuTyX packager team
# Packager: lesibel at free dot fr
# Depends on: ruby, kdepim-runtime, kdegraphics, qscintilla
# Run on: kdegraphics,kdebase-runtime,kdebase-workspace,qscintilla,kdepimlibs,ruby,pyqt
name=kdebindings
version=4.5.4
release=3
source=(ftp://ftp.kde.org/pub/kde/stable/$version/src/$name-$version.tar.bz2
kdebindings4.5.4-sip.patch )
build() {
cd $name-$version
patch -Np0 -i ../kdebindings4.5.4-sip.patch
mkdir build
cd build
cmake ../ -DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_BUILD_TYPE=Release \
make DESTDIR=$PKG install
}
|