blob: 85a183f175d831656f1046132fe21ce3fcd4cae0 (
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: Methode de saisie
# URL: http://www.scim-im.org/projects/scim
# Maintainer: NuTyX core team
# Packager: lesibel at free dot fr
# Depends on: gtk, intltool, xorg-libxdamage, xorg-libxrandr, xorg-libxinerama, xorg-libxcursor
# Run on:
name=scim
version=1.4.9
release=2
source=(http://downloads.sourceforge.net/sourceforge/$name/$name-$version.tar.gz
scim-gcc45.patch)
build () {
cd $name-$version
patch -Np1 -i $SRC/scim-gcc45.patch
./configure --prefix=/usr --sysconfdir=/etc \
--with-gnu-ld --with-x --disable-static
make
make DESTDIR=$PKG install
}
|