wok view orc/receipt @ rev 23696

Up libtcplay (3.3)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Apr 27 09:29:39 2020 +0000 (2020-04-27)
parents 79721c381319
children 3fe6c0591041
line source
1 # SliTaz package receipt.
3 PACKAGE="orc"
4 VERSION="0.4.31"
5 CATEGORY="multimedia"
6 SHORT_DESC="The Oil Runtime Compiler."
7 MAINTAINER="domcox@slitaz.org"
8 LICENSE="BSD"
9 WEB_SITE="https://gstreamer.freedesktop.org/projects/orc.html"
11 TARBALL="$PACKAGE-$VERSION.tar.xz"
12 WGET_URL="https://gstreamer.freedesktop.org/src/$PACKAGE/$TARBALL"
14 BUILD_DEPENDS="meson ninja"
16 HOST_ARCH="i486 arm"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 meson . \
22 _build \
23 --prefix=/usr &&
24 ninja -C _build &&
25 ninja -C _build install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr/lib
33 cp -a $install/usr/bin $fs/usr
34 cp -a $install/usr/lib/*.so* $fs/usr/lib
35 }