wok view ncdc/receipt @ rev 23259

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