wok-next annotate mrxvt/receipt @ rev 21643

updated fcron (3.0.4 -> 3.2.1)
author Hans-G?nter Theisgen
date Fri Jun 26 16:29:19 2020 +0100 (2020-06-26)
parents d5aab818505e
children
rev   line source
pankso@187 1 # SliTaz package receipt.
pankso@187 2
pankso@187 3 PACKAGE="mrxvt"
psychomaniak@19955 4 VERSION="0.5.4"
pankso@187 5 CATEGORY="utilities"
al@21020 6 SHORT_DESC="Terminal emulator with muli-tabs support"
al@21020 7 MAINTAINER="devel@slitaz.org"
pascal@15583 8 LICENSE="GPL2"
al@21020 9 WEB_SITE="http://materm.sourceforge.net/"
al@21020 10
pascal@19956 11 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@15583 12 WGET_URL="$SF_MIRROR/materm/$TARBALL"
pascal@15583 13
al@21078 14 BUILD_DEPENDS="xorg-dev libpng-dev jpeg-dev freetype-dev"
pankso@187 15
al@21020 16 compile_rules() {
psychomaniak@19955 17 ./bootstrap.sh
pankso@187 18 ./configure \
pankso@187 19 --prefix=/usr \
pankso@187 20 --infodir=/usr/share/info \
pankso@187 21 --mandir=/usr/share/man \
pankso@187 22 --enable-xft \
pankso@187 23 --enable-menubar \
pascal@1516 24 $CONFIGURE_ARGS &&
pascal@1516 25 make &&
al@21020 26 make DESTDIR=$install install
pankso@187 27 }
pankso@187 28
al@21020 29 genpkg_rules() {
pankso@187 30 mkdir -p $fs/usr
pascal@15583 31 cp -a $install/usr/bin $fs/usr
al@21078 32 DEPENDS="libpng jpeg freetype expat fontconfig libice libsm \
al@21078 33 libx11 libxau libxdmcp libxft libxpm \
al@21078 34 libxrender zlib"
al@21020 35 TAGS="terminal"
pankso@187 36 }