wok view libass/receipt @ rev 15224

gdb: remove wrong error trigger
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Sep 22 15:13:40 2013 +0200 (2013-09-22)
parents c0123955b3ee
children 6c3718ca17b6
line source
1 # SliTaz package receipt.
3 PACKAGE="libass"
4 VERSION="0.10.0"
5 CATEGORY="multimedia"
6 SHORT_DESC="A portable library for SSA/ASS subtitles rendering"
7 MAINTAINER="slaxemulator@gmail.com"
8 TARBALL="$PACKAGE-$VERSION.tar.xz"
9 WEB_SITE="http://code.google.com/p/libass/"
10 WGET_URL="http://libass.googlecode.com/files/$TARBALL"
12 DEPENDS="enca fontconfig libpng fribidi"
13 BUILD_DEPENDS="enca-dev freetype-dev fontconfig-dev libpng-dev \
14 expat-dev fribidi-dev pkg-config libxml2-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure $CONFIGURE_ARGS &&
21 make && make install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/lib
28 cp -a $install/usr/lib/*.so* $fs/usr/lib
29 }