wok-next view libass/receipt @ rev 20785

gpgme: add gnupg, since build can not find gpgconf and gpg
author Erkan Yilmaz <erkan@slitaz.org>
date Sat Jun 09 07:02:52 2018 +0000 (2018-06-09)
parents 0ec6086e21d6
children f48456621a9d
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="slaxemulator@gmail.com"
8 LICENSE="BSD"
9 WEB_SITE="https://github.com/libass/libass"
10 LFS="http://www.linuxfromscratch.org/blfs/view/stable/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="libass-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 }