blob: 7bb7e0e9a497549b6047816dc00d3d22c256d971 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# Description: Implémente un système complèt de retour d'appel pour les librairies de widget version 2
# URL: http://libsigc.sourceforge.net/
# Maintainer: NuTyX core team
# Packager: thierryn1 at hispeed dot ch
name=libsigc++
version=2.2.8
release=1
source=(http://ftp.gnome.org/pub/gnome/sources/$name/${version%.*}/$name-$version.tar.bz2\
http://nutyx.meticul.eu/files/patchs/$name/$name-$version-gcc46-1.patch)
build() {
cd $name-$version
patch -Np1 -i ../$name-$version-gcc46-1.patch
./configure --prefix=/usr
make
make DESTDIR=$PKG install
rm -r $PKG/usr/share/doc
}
|