wok view znc/receipt @ rev 20423

Update some web_site to https
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Aug 09 12:16:16 2018 +0200 (2018-08-09)
parents 038b6ea9e5d7
children 6135577f4d08
line source
1 # SliTaz package receipt.
3 PACKAGE="znc"
4 VERSION="1.2"
5 CATEGORY="network"
6 SHORT_DESC="An IRC bouncer with modules & scripts support."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL2"
9 SOURCE="DFBSee"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://wiki.znc.in/ZNC"
12 WGET_URL="http://znc.in/releases/$TARBALL"
13 HOST_ARCH="i486 arm"
15 SUGGESTED="tcl"
16 DEPENDS="libssl zlib"
17 BUILD_DEPENDS="openssl-dev tcl-dev zlib-dev"
19 # Rules to configure and make the package.
20 compile_rules()
21 {
22 ./configure \
23 --enable-tcl \
24 --disable-python \
25 --disable-perl \
26 --disable-cyrus \
27 $CONFIGURE_ARGS &&
28 make && make install
29 }
31 # Rules to gen a SliTaz package suitable for Tazpkg.
32 genpkg_rules()
33 {
34 mkdir -p $fs/usr/lib $fs/usr/share
35 cp -a $install/usr/bin $fs/usr
36 cp -a $install/usr/lib/znc $fs/usr/lib
37 cp -a $install/usr/share/znc $fs/usr/share
38 }