wok annotate dmenu/receipt @ rev 2722

Add:dmenu
author Rohit Joshi <jozee@slitaz.org>
date Fri Apr 24 07:23:26 2009 +0000 (2009-04-24)
parents
children a7f7f7a86f55
rev   line source
jozee@2722 1 # SliTaz package receipt.
jozee@2722 2
jozee@2722 3 PACKAGE="dmenu"
jozee@2722 4 VERSION="3.9"
jozee@2722 5 CATEGORY="misc"
jozee@2722 6 SHORT_DESC="dynamic menu lauch bar"
jozee@2722 7 MAINTAINER="rj.rohit@gmail.com"
jozee@2722 8 DEPENDS=""
jozee@2722 9 BUILD_DEPENDS="xorg-libX11-dev"
jozee@2722 10 TARBALL="$PACKAGE-$VERSION.tar.gz"
jozee@2722 11 WEB_SITE="http://code.suckless.org/dl/tools"
jozee@2722 12 WGET_URL="$WEB_SITE/$TARBALL"
jozee@2722 13
jozee@2722 14 # Rules to configure and make the package.
jozee@2722 15 compile_rules()
jozee@2722 16 {
jozee@2722 17 cd $src
jozee@2722 18 make
jozee@2722 19 make DESTDIR=$PWD/_pkg install
jozee@2722 20 }
jozee@2722 21
jozee@2722 22 # Rules to gen a SliTaz package suitable for Tazpkg.
jozee@2722 23 genpkg_rules()
jozee@2722 24 {
jozee@2722 25 mkdir -p $fs/usr/bin
jozee@2722 26 cp -a $_pkg/usr/local/bin/* $fs/usr/bin/
jozee@2722 27
jozee@2722 28 }