wok-next view dzen2/receipt @ rev 21722

efivar: typo in post_install
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Sep 01 10:31:46 2020 +0000 (2020-09-01)
parents d5aab818505e
children
line source
1 # SliTaz package receipt.
3 PACKAGE="dzen2"
4 VERSION="0.8.5"
5 CATEGORY="utilities"
6 SHORT_DESC="A general purpose messaging and notification program"
7 MAINTAINER="devel@slitaz.org"
8 LICENSE="MIT"
9 WEB_SITE="https://github.com/robm/dzen"
10 REPOLOGY="dzen"
12 TARBALL="$PACKAGE-$VERSION.tar.gz"
13 WGET_URL="http://gotmor.googlepages.com/$TARBALL"
15 BUILD_DEPENDS="libx11-dev"
17 compile_rules() {
18 sed -e 's/\/usr\/local/\/usr/' < config.mk > config.mk.slitaz
19 mv config.mk.slitaz config.mk
21 make &&
22 make DESTDIR=$install install
23 }
25 genpkg_rules() {
26 mkdir -p $fs/usr
27 cp -a $install/usr/bin $fs/usr
28 DEPENDS="libx11 libxau libxdmcp"
29 TAGS="system monitor notification"
30 }