blob: bfda43296d7264cedd690153b53f96282df8010d (
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
# Run on:
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
}
|