# SliTaz package receipt. PACKAGE="libass" VERSION="0.9.11" CATEGORY="multimedia" SHORT_DESC="A portable library for SSA/ASS subtitles rendering" MAINTAINER="slaxemulator@gmail.com" DEPENDS="enca fontconfig libpng" BUILD_DEPENDS="enca-dev freetype-dev fontconfig-dev libpng-dev expat-dev pkg-config" TARBALL="$PACKAGE-$VERSION.tar.bz2" WEB_SITE="http://code.google.com/p/libass/" WGET_URL="http://libass.googlecode.com/files/$TARBALL" # Rules to configure and make the package. compile_rules() { cd $src ./configure \ --prefix=/usr \ --infodir=/usr/share/info \ --mandir=/usr/share/man \ $CONFIGURE_ARGS && make && make DESTDIR=$PWD/_pkg install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs/usr/lib cp -a $_pkg/usr/lib/*.so* $fs/usr/lib }