wok view ncurses-examples/receipt @ rev 17187

gtk+: replace stock icons by Faenza icons. Later we can remove them from slitaz-icon package in order to save some space.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Oct 03 17:25:23 2014 +0300 (2014-10-03)
parents
children 3ba8d2c9720d
line source
1 # SliTaz package receipt.
3 PACKAGE="ncurses-examples"
4 VERSION="5.9"
5 CATEGORY="base-system"
6 SHORT_DESC="Ncurses test functions."
7 MAINTAINER="paul@slitaz.org"
8 TARBALL="$PACKAGE.tar.gz"
9 LICENSE="MIT"
10 WEB_SITE="http://invisible-island.net/ncurses/ncurses-examples.html"
11 WGET_URL="ftp://invisible-island.net/ncurses-examples/$TARBALL"
13 DEPENDS="ncurses"
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 mkdir -p $fs/usr
28 cp -a $install/usr/bin $fs/usr
29 }