wok-next view libass/receipt @ rev 21612

updated e3 (2.8 -> 2.82)
author Hans-G?nter Theisgen
date Thu Jun 25 10:20:43 2020 +0100 (2020-06-25)
parents f48456621a9d
children
line source
1 # SliTaz package receipt v2.
3 PACKAGE="libass"
4 VERSION="0.13.6"
5 CATEGORY="multimedia"
6 SHORT_DESC="A portable library for SSA/ASS subtitles rendering"
7 MAINTAINER="devel@slitaz.org"
8 LICENSE="BSD"
9 WEB_SITE="https://github.com/libass/libass"
10 LFS="http://www.linuxfromscratch.org/blfs/view/svn/multimedia/libass.html"
12 TARBALL="$PACKAGE-$VERSION.tar.xz"
13 WGET_URL="https://github.com/libass/libass/releases/download/$VERSION/$TARBALL"
15 BUILD_DEPENDS="yasm-dev freetype-dev fribidi-dev fontconfig-dev"
16 SPLIT="$PACKAGE-dev"
18 compile_rules() {
19 ./configure $CONFIGURE_ARGS &&
20 fix libtool &&
21 make &&
22 make install
23 }
25 genpkg_rules() {
26 case $PACKAGE in
27 libass)
28 copy @std
29 DEPENDS="fontconfig freetype fribidi libharfbuzz"
30 ;;
31 *-dev)
32 copy @dev
33 DEPENDS="libass \
34 fontconfig-dev freetype-dev fribidi-dev harfbuzz-dev"
35 ;;
36 esac
37 }