blob: ad9d4cd2420116d58d59a819d01a1e6247f825c6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# 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
# Run on: hicolor-icon-theme,iso-codes,libxml2,xorg-libx11
name=libxklavier
version=5.0
release=1
source=( http://downloads.sourceforge.net/gswitchit/$name-$version.tar.bz2)
build() {
cd $name-$version
./configure --prefix=/usr \
--mandir=/usr/share/man \
--infodir=/usr/share/info
make
make DESTDIR=$PKG install
rm -r $PKG/usr/share/gtk-doc
}
|