wok annotate dmenu/receipt @ rev 16060

ARM: add zile and joe text editors (nano got regex bug on ARM)
author Christophe Lincoln <pankso@slitaz.org>
date Wed Mar 12 00:54:36 2014 +0100 (2014-03-12)
parents 6063ce728c2f
children 1a0b3262dccf
rev   line source
jozee@2722 1 # SliTaz package receipt.
jozee@2722 2
jozee@2722 3 PACKAGE="dmenu"
slaxemulator@6361 4 VERSION="4.1.1"
jozee@2722 5 CATEGORY="misc"
jozee@2722 6 SHORT_DESC="dynamic menu lauch bar"
jozee@2734 7 MAINTAINER="jozee@slitaz.org"
pascal@15579 8 LICENSE="MIT"
jozee@2722 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
slaxemulator@6361 10 WEB_SITE="http://tools.suckless.org/dmenu/"
slaxemulator@6361 11 WGET_URL="http://dl.suckless.org/tools/$TARBALL"
jozee@4934 12 TAGS="launchbar"
jozee@2722 13
pascal@15579 14 DEPENDS="xorg-libX11 xorg-libXau xorg-libXdmcp xorg-libXext xorg-libXinerama"
pascal@15579 15 BUILD_DEPENDS="xorg-libX11-dev xorg-libXinerama-dev"
pascal@15579 16
jozee@2722 17 # Rules to configure and make the package.
jozee@2722 18 compile_rules()
jozee@2722 19 {
jozee@2722 20 cd $src
pascal@2845 21 make &&
pascal@15579 22 make DESTDIR=$DESTDIR install
jozee@2722 23 }
jozee@2722 24
jozee@2722 25 # Rules to gen a SliTaz package suitable for Tazpkg.
jozee@2722 26 genpkg_rules()
jozee@2722 27 {
jozee@2722 28 mkdir -p $fs/usr/bin
pascal@15579 29 cp -a $install/usr/local/bin/* $fs/usr/bin/
jozee@2722 30 }