blob: 118864dc2e76382b13a2706d912e4c54afadb60a (
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
# Depends on:
name=libsigc++
version=2.2.3
release=1
source=(http://ftp.gnome.org//pub/GNOME/sources/$name/2.2/$name-$version.tar.bz2)
build() {
cd $name-$version
./configure --prefix=/usr
make
make DESTDIR=$PKG install
rm -r $PKG/usr/share/doc
}
|