wok diff libass/receipt @ rev 25037

Up glza (0.11.4)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat May 21 21:38:29 2022 +0000 (24 months ago)
parents b569b85b0fb9
children 7364ffdaaa60
line diff
     1.1 --- a/libass/receipt	Mon Jan 17 18:18:17 2022 +0000
     1.2 +++ b/libass/receipt	Sat May 21 21:38:29 2022 +0000
     1.3 @@ -1,18 +1,19 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="libass"
     1.7 -VERSION="0.10.0"
     1.8 +VERSION="0.15.2"
     1.9  CATEGORY="multimedia"
    1.10 -SHORT_DESC="A portable library for SSA/ASS subtitles rendering"
    1.11 +SHORT_DESC="A portable library for SSA/ASS subtitles rendering."
    1.12  MAINTAINER="slaxemulator@gmail.com"
    1.13  LICENSE="BSD"
    1.14 +WEB_SITE="https://github.com/libass/libass"
    1.15 +
    1.16  TARBALL="$PACKAGE-$VERSION.tar.xz"
    1.17 -WEB_SITE="https://github.com/libass/libass"
    1.18 -WGET_URL="http://libass.googlecode.com/files/$TARBALL"
    1.19 +WGET_URL="$WEB_SITE/releases/download/$VERSION/$TARBALL"
    1.20  
    1.21 -DEPENDS="enca fontconfig libpng fribidi"
    1.22 -BUILD_DEPENDS="enca-dev freetype-dev fontconfig-dev libpng-dev \
    1.23 -expat-dev fribidi-dev pkg-config libxml2-dev"
    1.24 +DEPENDS="enca fontconfig fribidi libpng"
    1.25 +BUILD_DEPENDS="enca-dev expat-dev fontconfig-dev freetype-dev
    1.26 +	fribidi-dev libpng-dev libxml2-dev pkg-config"
    1.27  
    1.28  # What is the latest version available today?
    1.29  current_version()
    1.30 @@ -24,15 +25,13 @@
    1.31  # Rules to configure and make the package.
    1.32  compile_rules()
    1.33  {
    1.34 -	cd $src
    1.35  	./configure $CONFIGURE_ARGS &&
    1.36 -	make && make install
    1.37 +	make &&
    1.38 +	make install
    1.39  }
    1.40  
    1.41  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.42  genpkg_rules()
    1.43  {
    1.44 -	mkdir -p $fs/usr/lib
    1.45 -	cp -a $install/usr/lib/*.so* $fs/usr/lib
    1.46 +	cook_copy_files	*.so*
    1.47  }
    1.48 -