wok-6.x annotate orc/receipt @ rev 23725
hplip: update bdeps
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Thu Apr 30 16:01:51 2020 +0000 (2020-04-30) |
parents | 79721c381319 |
children | 3fe6c0591041 |
rev | line source |
---|---|
domcox@14013 | 1 # SliTaz package receipt. |
domcox@14013 | 2 |
domcox@14013 | 3 PACKAGE="orc" |
Hans-G?nter@23267 | 4 VERSION="0.4.31" |
domcox@14013 | 5 CATEGORY="multimedia" |
Hans-G?nter@21645 | 6 SHORT_DESC="The Oil Runtime Compiler." |
domcox@14013 | 7 MAINTAINER="domcox@slitaz.org" |
pascal@15601 | 8 LICENSE="BSD" |
Hans-G?nter@21645 | 9 WEB_SITE="https://gstreamer.freedesktop.org/projects/orc.html" |
Hans-G?nter@21645 | 10 |
Hans-G?nter@21645 | 11 TARBALL="$PACKAGE-$VERSION.tar.xz" |
Hans-G?nter@21645 | 12 WGET_URL="https://gstreamer.freedesktop.org/src/$PACKAGE/$TARBALL" |
Hans-G?nter@21645 | 13 |
Hans-G?nter@23267 | 14 BUILD_DEPENDS="meson ninja" |
Hans-G?nter@23267 | 15 |
pankso@16381 | 16 HOST_ARCH="i486 arm" |
domcox@14013 | 17 |
domcox@14013 | 18 # Rules to configure and make the package. |
domcox@14013 | 19 compile_rules() |
domcox@14013 | 20 { |
Hans-G?nter@23267 | 21 meson . \ |
Hans-G?nter@23267 | 22 _build \ |
Hans-G?nter@23267 | 23 --prefix=/usr && |
Hans-G?nter@23267 | 24 ninja -C _build && |
Hans-G?nter@23267 | 25 ninja -C _build install |
domcox@14013 | 26 } |
domcox@14013 | 27 |
domcox@14013 | 28 # Rules to gen a SliTaz package suitable for Tazpkg. |
domcox@14013 | 29 genpkg_rules() |
domcox@14013 | 30 { |
domcox@14013 | 31 mkdir -p $fs/usr/lib |
Hans-G?nter@21645 | 32 |
Hans-G?nter@21645 | 33 cp -a $install/usr/bin $fs/usr |
Hans-G?nter@21645 | 34 cp -a $install/usr/lib/*.so* $fs/usr/lib |
domcox@14013 | 35 } |