wok annotate orc/receipt @ rev 25295
updated screenfetch (3.5.0 -> 3.9.1)
author | Hans-G?nter Theisgen |
---|---|
date | Tue Jul 19 17:44:19 2022 +0100 (2022-07-19) |
parents | 5d79829fa876 |
children |
rev | line source |
---|---|
domcox@14013 | 1 # SliTaz package receipt. |
domcox@14013 | 2 |
domcox@14013 | 3 PACKAGE="orc" |
Hans-G?nter@25079 | 4 VERSION="0.4.32" |
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@25079 | 14 BUILD_DEPENDS="meson" |
Hans-G?nter@25079 | 15 |
pankso@16381 | 16 HOST_ARCH="i486 arm" |
domcox@14013 | 17 |
pascal@24072 | 18 current_version() |
pascal@24072 | 19 { |
pascal@24072 | 20 wget -O - $(dirname $WGET_URL) 2>/dev/null | \ |
pascal@24072 | 21 sed "/$PACKAGE-/!d;/tar/!d;s|.*$PACKAGE-\\(.*\\).tar.*\".*|\\1|" | sort -Vr | sed q |
pascal@24072 | 22 } |
pascal@24072 | 23 |
domcox@14013 | 24 # Rules to configure and make the package. |
domcox@14013 | 25 compile_rules() |
domcox@14013 | 26 { |
Hans-G?nter@25079 | 27 meson _build \ |
Hans-G?nter@25079 | 28 --prefix=/usr && |
Hans-G?nter@25079 | 29 ninja -C _build && |
Hans-G?nter@25079 | 30 ninja -C _build install |
Hans-G?nter@25079 | 31 |
domcox@14013 | 32 } |
domcox@14013 | 33 |
domcox@14013 | 34 # Rules to gen a SliTaz package suitable for Tazpkg. |
domcox@14013 | 35 genpkg_rules() |
domcox@14013 | 36 { |
Hans-G?nter@25079 | 37 cook_copy_folders bin |
Hans-G?nter@25079 | 38 cook_copy_files *.so* |
domcox@14013 | 39 } |