summaryrefslogtreecommitdiffstats
path: root/libkgapi/Pkgfile
diff options
context:
space:
mode:
Diffstat (limited to 'libkgapi/Pkgfile')
-rwxr-xr-xlibkgapi/Pkgfile23
1 files changed, 23 insertions, 0 deletions
diff --git a/libkgapi/Pkgfile b/libkgapi/Pkgfile
new file mode 100755
index 000000000..0f17ac43b
--- /dev/null
+++ b/libkgapi/Pkgfile
@@ -0,0 +1,23 @@
+# Description: Librairie de base pour KDE pour acceder aux services Google via leurs api publiques
+# URL: https://projects.kde.org/projects/kdereview/libkgapi
+# Maintainer: KDE Project : https://projects.kde.org/projects/kde
+# Packager: lesibel at free dot fr
+# Depends on: cmake,automoc4,boost,kdepimlibs,qjson
+# Run on: kdepimlibs,qjson
+
+name=libkgapi
+version=0.4.1
+release=1
+source=(http://download.kde.org/stable/$name/$version/src/$name-$version.tar.bz2)
+
+build() {
+ cd $name-$version
+
+ mkdir build
+ cd build
+ cmake ../ -DCMAKE_BUILD_TYPE=Release \
+ -DCMAKE_INSTALL_PREFIX=/usr
+ make
+ make DESTDIR=$PKG install
+}
+