wok view ncurses-examples/receipt @ rev 23339

updated perl-gssapi (0.26 -> 0.28)
author Hans-G?nter Theisgen
date Tue Mar 31 07:47:46 2020 +0100 (2020-03-31)
parents c36d2f6f3037
children d7522d21c4d3
line source
1 # SliTaz package receipt.
3 PACKAGE="ncurses-examples"
4 VERSION="20180127"
5 CATEGORY="base-system"
6 SHORT_DESC="Ncurses test functions."
7 MAINTAINER="paul@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tgz"
9 LICENSE="MIT"
10 WEB_SITE="https://invisible-island.net/ncurses/ncurses-examples.html"
11 WGET_URL="https://invisible-mirror.net/archives/$PACKAGE/$TARBALL"
13 DEPENDS="ncurses perl"
14 BUILD_DEPENDS="ncurses-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 ./configure \
20 $CONFIGURE_ARGS &&
21 make && make install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 cp -a $install/usr $fs
28 mkdir -p $install/usr/share/man $install/usr/share/doc
29 cp $src/*.6 $install/usr/share/man
30 cp $src/README $install/usr/share/doc
31 }