wok annotate ncdc/receipt @ rev 23845

updated qterminal (0.5.0 -> 0.6.0)
author Hans-G?nter Theisgen
date Sat Jun 13 14:04:13 2020 +0100 (2020-06-13)
parents 6e8b1bcb30e2
children 241fb98cab1c
rev   line source
paul@17346 1 # SliTaz package receipt.
paul@17346 2
paul@17346 3 PACKAGE="ncdc"
Hans-G?nter@23228 4 VERSION="1.22.1"
paul@17346 5 CATEGORY="network"
paul@17346 6 SHORT_DESC="NCurses Direct Connect."
paul@17346 7 MAINTAINER="paul@slitaz.org"
pascal@18334 8 LICENSE="MIT"
Hans-G?nter@23228 9 WEB_SITE="https://dev.yorhel.nl/ncdc"
Hans-G?nter@23228 10
paul@17346 11 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@20671 12 WGET_URL="https://dev.yorhel.nl/download/$TARBALL"
paul@17346 13
Hans-G?nter@23228 14 DEPENDS="bzip2 gnutls ncursesw pcre sqlite zlib"
Hans-G?nter@23228 15 BUILD_DEPENDS="bzip2-dev glib-dev gnutls-dev libgnutls ncursesw ncursesw-dev
Hans-G?nter@23228 16 pcre-dev sqlite-dev zlib-dev"
pascal@20574 17
paul@17346 18 # Rules to configure and make the package.
paul@17346 19 compile_rules()
paul@17346 20 {
Hans-G?nter@23228 21 export LDFLAGS="$LDFLAGS -ltinfo"
Hans-G?nter@23228 22
Hans-G?nter@23228 23 ./configure \
Hans-G?nter@23228 24 --prefix=/usr \
Hans-G?nter@23228 25 NCURSES_CFLAGS=" " \
Hans-G?nter@23228 26 NCURSES_LIBS=/lib/libncursesw.so &&
Hans-G?nter@23228 27 make &&
paul@17346 28 make install
paul@17346 29 }
paul@17346 30
paul@17346 31 # Rules to gen a SliTaz package suitable for Tazpkg.
paul@17346 32 genpkg_rules()
paul@17346 33 {
paul@17346 34 mkdir -p $fs/usr
Hans-G?nter@23228 35 cp -a $install/usr/bin $fs/usr
paul@17346 36 }