wok annotate embryo/receipt @ rev 25031

Add fatcat
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri May 20 09:25:51 2022 +0000 (2022-05-20)
parents b01314c762e9
children
rev   line source
pankso@140 1 # SliTaz package receipt.
pankso@140 2
pankso@140 3 PACKAGE="embryo"
pankso@16130 4 VERSION="1.7.10"
gokhlayeh@8505 5 CATEGORY="base-system"
domcox@14667 6 SHORT_DESC="EFL Small Pawn based virtual machine and compiler."
pankso@140 7 MAINTAINER="pankso@slitaz.org"
pascal@14994 8 LICENSE="BSD"
pankso@2022 9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
pascal@20421 10 WEB_SITE="https://www.enlightenment.org/"
pascal@25021 11 WGET_URL="https://download.enlightenment.org/__old/att/releases/$TARBALL"
domcox@14387 12 TAGS="e enlightenment efl"
pankso@16116 13 HOST_ARCH="i486 arm"
pankso@140 14
pankso@13638 15 DEPENDS="eina"
pankso@13638 16 BUILD_DEPENDS="eina-dev"
pankso@13638 17
pascal@24759 18 # What is the latest version available today?
pascal@24759 19 current_version()
pascal@24759 20 {
pascal@24759 21 wget -O - https://git.enlightenment.org/legacy/embryo.git/ 2>/dev/null | \
pascal@24759 22 sed '/h=v[0-9]/!d;s|.*>v||;s|<.*||;q'
pascal@24759 23 }
pascal@24759 24
pankso@140 25 # Rules to configure and make the package.
pankso@140 26 compile_rules()
pankso@140 27 {
domcox@14667 28 ./configure $CONFIGURE_ARGS &&
domcox@14667 29 make $MAKEFLAGS && make install
pankso@140 30 }
pankso@140 31
pankso@140 32 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@140 33 genpkg_rules()
pankso@140 34 {
pankso@140 35 mkdir -p $fs/usr/lib
pankso@13638 36 cp -a $install/usr/share $fs/usr
pankso@13638 37 cp -a $install/usr/bin $fs/usr
pankso@13638 38 cp -a $install/usr/lib/*.so* $fs/usr/lib
pankso@140 39 }