wok view znc/receipt @ rev 21600

Up: smplayer(19.5.0), xine-lib(1.2.9), xine-ui(0.99.10)
author maniac
date Thu May 23 12:16:28 2019 +0300 (2019-05-23)
parents af1be39c0a6b
children 59d46ded4ed8
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="https://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 }