wok view orc/receipt @ rev 20820

Add bacon & qb2c
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Feb 19 10:10:09 2019 +0100 (2019-02-19)
parents 4c9e6fbf8207
children 79721c381319
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="https://gstreamer.freedesktop.org/data/doc/orc/"
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 }