wok view orc/receipt @ rev 15224

gdb: remove wrong error trigger
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Sep 22 15:13:40 2013 +0200 (2013-09-22)
parents
children 23c3aed67cd9
line source
1 # SliTaz package receipt.
3 PACKAGE="orc"
4 VERSION="0.4.16"
5 CATEGORY="multimedia"
6 SHORT_DESC="The Oil Runtime Compiler"
7 MAINTAINER="domcox@slitaz.org"
8 DEPENDS=""
9 BUILD_DEPENDS=""
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://code.entropywave.com/"
12 WGET_URL="$WEB_SITE/download/$PACKAGE/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure \
19 --libexecdir=/usr/lib \
20 --disable-static \
21 $CONFIGURE_ARGS &&
22 make $MAKEFLAGS && 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 $_pkg/usr/bin $fs/usr
30 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
31 }