wok view gmrun/receipt @ rev 11785

Down gnumeric (0.8.16) 0.8.17 references gtk+-3. Removed unrecognized option from goffice
author Samuel Trassare <samuel_trassare@yahoo.com>
date Fri Feb 24 10:18:11 2012 -0800 (2012-02-24)
parents 116602ef2d27
children d1c17bd2c2bc
line source
1 # SliTaz package receipt.
3 PACKAGE="gmrun"
4 VERSION="0.9.2"
5 CATEGORY="utilities"
6 SHORT_DESC="Program launcher with autocompletion."
7 MAINTAINER="rocky@slitaz.org"
8 DEPENDS="gtk+ gcc-lib-base popt"
9 BUILD_DEPENDS="gtk+-dev popt-dev"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://sourceforge.net/projects/gmrun"
12 WGET_URL="$SF_MIRROR/gmrun/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 while read file; do
19 [ -f done.$file ] && continue
20 echo "Apply $file..."
21 patch -p1 < $stuff/$file || return 1
22 touch done.$file
23 done <<EOT
24 gmrun-0.9.2-gcc43.patch
25 EOT
26 ./configure --prefix=/usr \
27 $CONFIGURE_ARGS &&
28 make &&
29 make install DESTDIR=$PWD/_pkg
30 }
32 # Rules to gen a SliTaz package suitable for Tazpkg.
33 genpkg_rules()
34 {
35 mkdir -p $fs/usr
36 cp -a $_pkg/usr/bin $fs/usr
37 cp -a $_pkg/usr/share $fs/usr
38 cp $stuff/gmrunrc $fs/usr/share/gmrun
39 }