# SliTaz package receipt. PACKAGE="cmatrix" VERSION="2.0" CATEGORY="misc" SHORT_DESC="Matrix screensaver." MAINTAINER="paul@slitaz.org" LICENSE="GPL2" WEB_SITE="https://www.asty.org/cmatrix/" TARBALL="$PACKAGE-$VERSION.tar.gz" WGET_URL="https://github.com/abishekvashok/$PACKAGE/archive/v$VERSION.tar.gz" DEPENDS="ncurses" BUILD_DEPENDS="cmake ncurses-dev" # What is the latest version available today? current_version() { wget -O - ${WGET_URL%/arch*}/tags 2>/dev/null | \ sed '/archive.*tar/!d;s|.*/v*\(.*\).tar.*|\1|;q' } # Rules to configure and make the package. compile_rules() { # 1.2a # export LDFLAGS="$LDFLAGS -ltinfo" mkdir _build && cd _build && cmake .. \ -D CMAKE_INSTALL_PREFIX=/usr && make && make DESTDIR=$DESTDIR install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { cook_copy_folders bin }