wok annotate dzen2/receipt @ rev 19115

tk, nano, htop, gawk: fix arm build
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat May 07 15:28:14 2016 +0200 (2016-05-07)
parents 74a6a43bf614
children c86e41198e76
rev   line source
mallory@1819 1 # SliTaz package receipt.
mallory@1819 2
mallory@1819 3 PACKAGE="dzen2"
mallory@1819 4 VERSION="0.8.5"
pascal@2054 5 CATEGORY="utilities"
mallory@1819 6 SHORT_DESC="A general purpose messaging and notification program. "
mallory@1819 7 MAINTAINER="mallory@sweetpeople.org"
pascal@15579 8 LICENSE="MIT"
mallory@1819 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
mallory@1819 10 WEB_SITE="http://gotmor.googlepages.com/dzen"
mallory@1819 11 WGET_URL="http://gotmor.googlepages.com/$TARBALL"
pascal@15579 12 TAGS="system monitor notification"
pascal@15579 13
pascal@2514 14 DEPENDS="xorg-libX11 xorg-libXau xorg-libXdmcp"
mallory@1819 15
mallory@1819 16 # Rules to configure and make the package.
mallory@1819 17 compile_rules()
mallory@1819 18 {
mallory@1819 19 cd $src
mallory@1819 20 sed -e 's/\/usr\/local/\/usr/' < config.mk > config.mk.slitaz
mallory@1819 21 mv config.mk.slitaz config.mk
pascal@15579 22 make && make DESTDIR=$DESTDIR install
mallory@1819 23 }
mallory@1819 24
mallory@1819 25 # Rules to gen a SliTaz package suitable for Tazpkg.
mallory@1819 26 genpkg_rules()
mallory@1819 27 {
mallory@1819 28 mkdir -p $fs/usr
pascal@15579 29 cp -a $install/usr/bin $fs/usr
mallory@1819 30 }
mallory@1819 31