blob: 22dc601e5485088e8bc02af2157eb4cef6276114 (
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: outils pour GUI
# URL: http://linux.pte.hu/~pipas/gtkdialog/
# Maintainer: NuTyX core team
# Packager: geantbrun at gmail dot com
# Depends on: gtk, xorg-libxcursor, xorg-libxdamage, xorg-libxrandr, xorg-libxinerama
# Run on: gtk
name=gtkdialog
version=0.7.20
release=3
source=(ftp://linux.pte.hu/pub/gtkdialog/$name-$version.tar.gz \
http://nutyx.meticul.eu/files/patchs/$name/gtkdialog_0.7.20_glade.patch)
build() {
cd $name-$version
patch -p1 < $SRC/gtkdialog_0.7.20_glade.patch
./configure --prefix=/usr
make
make prefix=$PKG/usr install
rm -r $PKG/usr/info
}
|