wok view libass/receipt @ rev 18730

Quote root dir in post_install
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Dec 20 15:13:45 2015 +0100 (2015-12-20)
parents ba27647b4b2f
children 86790a278e70
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="http://code.google.com/p/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 }