wok view gmrun/receipt @ rev 3568

tag rest of b* receipts
author Rohit Joshi <jozee@slitaz.org>
date Thu Jun 25 10:49:46 2009 +0000 (2009-06-25)
parents
children 1794ce625358
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+"
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 patch -p1 -i ../stuff/gmrun-0.9.2-gcc43.patch &&
19 ./configure --prefix=/usr \
20 $CONFIGURE_ARGS &&
21 make &&
22 make install DESTDIR=$PWD/_pkg
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr
29 cp -a $_pkg/usr/bin $fs/usr
30 cp -a $_pkg/usr/share $fs/usr
31 cp $PWD/stuff/gmrunrc $fs/usr/share/gmrun
32 }