wok view orc/receipt @ rev 16861

Up cairo cairo-dev cairo-gl cairo-gl-dev (1.12.10)
author Yuri Pourre <yuripourre@gmail.com>
date Sun Jul 13 04:02:46 2014 -0300 (2014-07-13)
parents f498b54a20cd
children eeba7ab1dffe
line source
1 # SliTaz package receipt.
3 PACKAGE="orc"
4 VERSION="0.4.18"
5 CATEGORY="multimedia"
6 SHORT_DESC="The Oil Runtime Compiler"
7 MAINTAINER="domcox@slitaz.org"
8 LICENSE="BSD"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://code.entropywave.com/"
11 WGET_URL="$WEB_SITE/download/$PACKAGE/$TARBALL"
12 HOST_ARCH="i486 arm"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 ./configure \
18 --libexecdir=/usr/lib \
19 --disable-static \
20 $CONFIGURE_ARGS &&
21 make $MAKEFLAGS && make install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/lib
28 cp -a $install/usr/bin $fs/usr
29 cp -a $install/usr/lib/*.so* $fs/usr/lib
30 }