wok-current annotate xvidcore/receipt @ rev 10353
gcc: Removed gawk in build depends. Added check like the one glibc has to install if cook script is found. Fixed tazwok cookorder i hope.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Sun May 22 16:40:19 2011 +0000 (2011-05-22) |
parents | cca03eafc9b1 |
children | 0d06b2cd33d0 |
rev | line source |
---|---|
devl547@5630 | 1 # SliTaz package receipt. |
devl547@5630 | 2 |
devl547@5630 | 3 PACKAGE="xvidcore" |
slaxemulator@10241 | 4 VERSION="1.3.1" |
devl547@5630 | 5 CATEGORY="multimedia" |
devl547@5630 | 6 SHORT_DESC="XviD, a high performance/quality MPEG-4 video de-/encoding solution" |
devl547@5630 | 7 MAINTAINER="devl547@gmail.com" |
devl547@5630 | 8 BUILD_DEPENDS="yasm" |
devl547@5630 | 9 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
devl547@5630 | 10 WEB_SITE="http://www.xvid.org" |
devl547@5630 | 11 WGET_URL="http://downloads.xvid.org/downloads/$TARBALL" |
devl547@5630 | 12 |
devl547@5630 | 13 # Rules to configure and make the package. |
devl547@5630 | 14 compile_rules() |
devl547@5630 | 15 { |
gokhlayeh@8227 | 16 cd $src/build/generic |
devl547@5630 | 17 ./configure \ |
devl547@5630 | 18 --prefix=/usr \ |
devl547@5630 | 19 --mandir=/usr/share/man \ |
devl547@5630 | 20 $CONFIGURE_ARGS && |
devl547@5630 | 21 make && |
devl547@5630 | 22 make DESTDIR=$PWD/_pkg install |
devl547@5630 | 23 } |
devl547@5630 | 24 |
devl547@5630 | 25 # Rules to gen a SliTaz package suitable for Tazpkg. |
devl547@5630 | 26 genpkg_rules() |
devl547@5630 | 27 { |
devl547@5630 | 28 mkdir -p $fs/usr/lib |
gokhlayeh@8227 | 29 cp -a $src/build/generic/_pkg/usr/lib/*.so* $fs/usr/lib |
devl547@5630 | 30 } |