wok-next view naim/receipt @ rev 19817

Random updates: cookutils, libmtp, muparser, naim, neon, schroedinger, sip, stfl, szip, tazpkg.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Jul 28 02:00:12 2017 +0300 (2017-07-28)
parents fe9ffaed898b
children d43bf7aae921
line source
1 # SliTaz package receipt v2.
3 PACKAGE="naim"
4 VERSION="0.11.8.3.2"
5 CATEGORY="network"
6 SHORT_DESC="A console AIM, ICQ, IRC, and Lily CMC client"
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="http://naim.n.ml.org/"
11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
12 # official page refers to SliTaz sources mirror :)
13 WGET_URL="http://distro.ibiblio.org/slitaz/sources/packages/n/$TARBALL"
14 # https://github.com/jwise/naim
16 BUILD_DEPENDS="ncurses-dev"
17 SPLIT="naim-dev"
19 # Rules to configure and make the package.
20 compile_rules()
21 {
22 ./configure $CONFIGURE_ARGS &&
23 make -j1 &&
24 make -j1 DESTDIR=$DESTDIR install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 case $PACKAGE in
31 naim)
32 copy @std
33 DEPENDS="ncurses"
34 ;;
35 *-dev)
36 copy @dev
37 ;;
38 esac
39 }