blob: e38da8c2a03e8a7cdd84aa3b4c33dd86bfd7fa15 (
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: 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
name=scim
version=1.4.9
release=1
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
}
|