wok-stable diff gtkdialog/receipt @ rev 10955
Add: hdparm
author | Liu Peng <hipeng@yahoo.com> |
---|---|
date | Sun Sep 18 14:55:59 2011 +0000 (2011-09-18) |
parents | d1768332cee0 |
children |
line diff
1.1 --- a/gtkdialog/receipt Sun May 08 09:01:58 2011 +0000 1.2 +++ b/gtkdialog/receipt Sun Sep 18 14:55:59 2011 +0000 1.3 @@ -5,12 +5,13 @@ 1.4 CATEGORY="x-window" 1.5 SHORT_DESC="Small utility for fast and easy GUI building using GTK+." 1.6 MAINTAINER="pankso@slitaz.org" 1.7 -DEPENDS="gtk+ libglade xorg-libXdamage" 1.8 -BUILD_DEPENDS="gtk+-dev libglade-dev xorg-libXdamage-dev" 1.9 TARBALL="$PACKAGE-$VERSION.tar.gz" 1.10 WEB_SITE="http://linux.pte.hu/~pipas/gtkdialog/" 1.11 WGET_URL="ftp://linux.pte.hu/pub/gtkdialog/$TARBALL" 1.12 1.13 +DEPENDS="gtk+ libglade xorg-libXdamage" 1.14 +BUILD_DEPENDS="gtk+-dev libglade-dev xorg-libXdamage-dev" 1.15 + 1.16 # Rules to configure and make the package. 1.17 compile_rules() 1.18 { 1.19 @@ -19,19 +20,14 @@ 1.20 patch -p 0 < $stuff/glade_support.patch || return 1 1.21 ./configure \ 1.22 --prefix=/usr \ 1.23 - --infodir=/usr/share/info \ 1.24 - --mandir=/usr/share/man \ 1.25 $CONFIGURE_ARGS && 1.26 make && 1.27 - make DESTDIR=$PWD/_pkg install 1.28 + make DESTDIR=$DESTDIR install 1.29 } 1.30 1.31 # Rules to gen a SliTaz package suitable for Tazpkg. 1.32 genpkg_rules() 1.33 { 1.34 - mkdir -p $fs/usr/share/examples 1.35 - cp -a $_pkg/usr/bin $fs/usr 1.36 - # Fiew examples. 1.37 - cp -a stuff/examples $fs/usr/share/examples/gtkdialog 1.38 + mkdir -p $fs/usr 1.39 + cp -a $install/usr/bin $fs/usr 1.40 } 1.41 -