wok view libt4k_common/receipt @ rev 23041

linphone: added build dependency cmake
author Hans-G?nter Theisgen
date Wed Mar 04 14:40:01 2020 +0100 (2020-03-04)
parents b1b4124be3fb
children b569b85b0fb9
line source
1 # SliTaz package receipt.
3 PACKAGE="libt4k_common"
4 VERSION="0.1.1"
5 CATEGORY="games"
6 SHORT_DESC="Common libraries for tux4kids games."
7 MAINTAINER="samuel_trassare@yahoo.com"
8 LICENSE="GPL3"
9 WEB_SITE="https://github.com/tux4kids/t4kcommon"
10 SOURCE="t4k_common"
11 TARBALL="$SOURCE-$VERSION.tar.gz"
12 WGET_URL="https://alioth.debian.org/frs/download.php/3540/$TARBALL"
14 DEPENDS="libsdl libsdl-image libsdl-mixer libsdl-ttf libsdl-net librsvg \
15 libsdl-pango"
16 BUILD_DEPENDS="libsdl-dev libsdl-image-dev libsdl-mixer-dev libsdl-ttf-dev \
17 libsdl-net-dev librsvg-dev libsdl-pango-dev wget libxml2-dev libcroco-dev"
19 # Rules to configure and make the package.
20 compile_rules()
21 {
22 ./configure $CONFIGURE_ARGS &&
23 make &&
24 make install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/lib $fs/usr/share
31 cp -a $install/usr/lib/*so* $fs/usr/lib
32 cp -ar $install/usr/share/* $fs/usr/share
33 }