wok-next annotate dialog/receipt @ rev 21727

created recipe for vbindiff
author Hans-G?nter Theisgen
date Sat Nov 21 14:32:44 2020 +0100 (2020-11-21)
parents 262dccc5e3ed
children
rev   line source
al@19835 1 # SliTaz package receipt v2.
pankso@35 2
pankso@35 3 PACKAGE="dialog"
Hans-G?nter@21590 4 VERSION="1.3.20200327"
pankso@211 5 CATEGORY="base-system"
al@19835 6 SHORT_DESC="Script-interpreter which provides a set of curses widgets"
Hans-G?nter@21590 7 MAINTAINER="maintainer@slitaz.org"
pascal@14996 8 LICENSE="LGPL2.1"
al@21123 9 WEB_SITE="https://invisible-island.net/dialog/" # "HTTP/1.1 403 Forbidden" for wget
pankso@12840 10
Hans-G?nter@21590 11 TARBALL="$PACKAGE-${VERSION%.*}-${VERSION##*.}.tgz"
al@21085 12 WGET_URL="https://invisible-mirror.net/archives/dialog/$TARBALL"
Hans-G?nter@21590 13 # 1.3-20181107 TARBALL_SHA1="9bbfba93cf8a818251c6a4e707ba5c1135cb21a8"
al@19591 14
Hans-G?nter@21590 15 BUILD_DEPENDS="gettext-dev ncurses-dev"
al@21020 16 SPLIT="$PACKAGE-dev"
pankso@35 17
al@21085 18 DEPENDS_std="ncurses"
al@21085 19
Hans-G?nter@21590 20 compile_rules()
Hans-G?nter@21590 21 {
Hans-G?nter@21590 22 ./configure \
Hans-G?nter@21590 23 --with-ncursesw \
Hans-G?nter@21590 24 --enable-nls \
Hans-G?nter@21590 25 --enable-widec \
pankso@4895 26 $CONFIGURE_ARGS &&
al@20534 27 make &&
al@21020 28 make DESTDIR=$install install || return 1
al@19835 29
Hans-G?nter@21590 30 # Configuration file.
Hans-G?nter@21590 31 install -Dm644 $stuff/dialogrc $install/etc/dialogrc
al@20896 32
al@20896 33 cook_pick_manpages dialog.3
pankso@35 34 }