blob: 03b6017793771b366fdb85f73e83b985aaec8ce4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Description: Contient un kit de contruction de navigateur de fenĂȘtres
# URL: http://www.gnome.org/
# Maintainer: NuTyX core team
# Packager: thierryn1 at hispeed dot ch
# Depends on: gtk, p5-xml-parser, xorg-libxt, xorg-libxres, startup-notification, xorg-libxinerama, xorg-libxrandr, xorg-libxcursor, xorg-libxdamage
# Run on: gtk,p5-xml-parser
name=libwnck
version=2.30.6
release=1
source=(http://ftp.gnome.org/pub/gnome/sources/$name/${version%.*}/$name-$version.tar.bz2)
build() {
cd $name-$version
./configure --prefix=/usr
make
make DESTDIR=$PKG install
rm -rf $PKG/usr/share/gtk-doc
# Les binaires sont disponnible dans libwnck3
rm -f $PKG/usr/bin/wnckprop
rm -f $PKG/usr/bin/wnck-urgency-monitor
}
|