wok view cmatrix/receipt @ rev 24426

updated cmatrix (1.2a -> 2.0)
author Hans-G?nter Theisgen
date Sat Feb 12 11:04:56 2022 +0100 (2022-02-12)
parents 39567aac1197
children 83b97236db32
line source
1 # SliTaz package receipt.
3 PACKAGE="cmatrix"
4 VERSION="2.0"
5 CATEGORY="misc"
6 SHORT_DESC="Matrix screensaver."
7 MAINTAINER="paul@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="https://www.asty.org/cmatrix/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="https://github.com/abishekvashok/$PACKAGE/archive/v$VERSION.tar.gz"
14 DEPENDS="ncurses"
15 BUILD_DEPENDS="cmake ncurses-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 # 1.2a
21 # export LDFLAGS="$LDFLAGS -ltinfo"
23 mkdir _build &&
24 cd _build &&
25 cmake .. \
26 -D CMAKE_INSTALL_PREFIX=/usr &&
27 make &&
28 make DESTDIR=$DESTDIR install
29 }
31 # Rules to gen a SliTaz package suitable for Tazpkg.
32 genpkg_rules()
33 {
34 cook_copy_folders bin
35 }