wok-next annotate dzen2/receipt @ rev 20908

bzip2: update home page and source URL (thanks shann); domain bzip.org is suspended now...
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sun Aug 12 04:53:45 2018 +0300 (2018-08-12)
parents d958fec46c9f
children d5aab818505e
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"
al@20906 6 SHORT_DESC="A general purpose messaging and notification program"
mallory@1819 7 MAINTAINER="mallory@sweetpeople.org"
pascal@15579 8 LICENSE="MIT"
al@20882 9 WEB_SITE="http://gotmor.googlepages.com/dzen"
al@20882 10 REPOLOGY="dzen"
al@20882 11
mallory@1819 12 TARBALL="$PACKAGE-$VERSION.tar.gz"
mallory@1819 13 WGET_URL="http://gotmor.googlepages.com/$TARBALL"
pascal@15579 14 TAGS="system monitor notification"
pascal@15579 15
pascal@2514 16 DEPENDS="xorg-libX11 xorg-libXau xorg-libXdmcp"
pascal@20217 17 BUILD_DEPENDS="xorg-libX11-dev"
mallory@1819 18
mallory@1819 19 # Rules to configure and make the package.
mallory@1819 20 compile_rules()
mallory@1819 21 {
mallory@1819 22 cd $src
mallory@1819 23 sed -e 's/\/usr\/local/\/usr/' < config.mk > config.mk.slitaz
mallory@1819 24 mv config.mk.slitaz config.mk
pascal@15579 25 make && make DESTDIR=$DESTDIR install
mallory@1819 26 }
mallory@1819 27
mallory@1819 28 # Rules to gen a SliTaz package suitable for Tazpkg.
mallory@1819 29 genpkg_rules()
mallory@1819 30 {
mallory@1819 31 mkdir -p $fs/usr
pascal@15579 32 cp -a $install/usr/bin $fs/usr
mallory@1819 33 }
mallory@1819 34