blob: 5e3cfc64bb90f8879b0390679a91fbb48c4a2b2f (
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
|
# Description: Utilitaire pour le clavier sous X
# URL: http://www.freedesktop.org/wiki/Software/LibXklavier
# Maintainer: NuTyX core team
# Packager: thierryn1 at hispeed dot ch
# Depends on: hicolor-icon-theme, iso-codes, libxml2, xorg-libx11, glib
# Run on: hicolor-icon-theme,iso-codes,libxml2,xorg-libx11,glib
name=libxklavier
version=5.2
release=1
source=( http://ftp.gnome.org/pub/GNOME/sources/libxklavier/$version/$name-$version.tar.xz
use-local-include-for-gir.patch)
build() {
cd $name-$version
patch -p1 < ../use-local-include-for-gir.patch
./configure --prefix=/usr \
--mandir=/usr/share/man \
--infodir=/usr/share/info
make
make DESTDIR=$PKG install
rm -r $PKG/usr/share/gtk-doc
}
|