summaryrefslogtreecommitdiffstats
path: root/caribou/Pkgfile
diff options
context:
space:
mode:
Diffstat (limited to 'caribou/Pkgfile')
-rwxr-xr-xcaribou/Pkgfile25
1 files changed, 25 insertions, 0 deletions
diff --git a/caribou/Pkgfile b/caribou/Pkgfile
new file mode 100755
index 0000000..98caf00
--- /dev/null
+++ b/caribou/Pkgfile
@@ -0,0 +1,25 @@
+# Description: Alternative de clavier virtual à Gnome On-Screen Keyboard
+# URL: http://gnome.gnome.org/Caribou
+# Maintainer: NuTyX GNOME team
+# Packager: piernov <piernov@piernov.org>
+# Depends on: gtk3, pygobject3, clutter, libgee, gobject-introspection, intltool, libxklavier, json-glib, at-spi
+# Run on: gtk3, pygobject3, clutter, libgee, libxklavier, json-glib
+
+name=caribou
+version=0.3.5
+release=1
+source=(http://download.gnome.org/sources/$name/${version%.*}/$name-$version.tar.xz
+ import_from_gi.repository.patch)
+
+build() {
+ cd $name-$version
+ patch -p1 < ../import_from_gi.repository.patch
+ sed "s|/usr/bin/python|/usr/bin/python2|" -i tools/make_schema.py tools/fix_gir.py
+ PYTHON=/usr/bin/python2 ./configure --prefix=/usr \
+ --disable-schemas-compile\
+ --disable-scrollkeeper \
+ --enable-gtk2-module \
+ --enable-gtk3-module
+ make
+ make DESTDIR=$PKG install
+}