wok view libass/receipt @ rev 21459

ttf-dejavu*: update web_site
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Apr 30 09:31:34 2019 +0200 (2019-04-30)
parents 6c3718ca17b6
children b569b85b0fb9
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 LICENSE="BSD"
9 TARBALL="$PACKAGE-$VERSION.tar.xz"
10 WEB_SITE="https://github.com/libass/libass"
11 WGET_URL="http://libass.googlecode.com/files/$TARBALL"
13 DEPENDS="enca fontconfig libpng fribidi"
14 BUILD_DEPENDS="enca-dev freetype-dev fontconfig-dev libpng-dev \
15 expat-dev fribidi-dev pkg-config libxml2-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
21 ./configure $CONFIGURE_ARGS &&
22 make && make install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/lib
29 cp -a $install/usr/lib/*.so* $fs/usr/lib
30 }