# SliTaz package receipt. PACKAGE="embryo" VERSION="1.7.10" CATEGORY="base-system" SHORT_DESC="EFL Small Pawn based virtual machine and compiler." MAINTAINER="pankso@slitaz.org" LICENSE="BSD" TARBALL="$PACKAGE-$VERSION.tar.bz2" WEB_SITE="https://www.enlightenment.org/" WGET_URL="https://download.enlightenment.org/__old/att/releases/$TARBALL" TAGS="e enlightenment efl" HOST_ARCH="i486 arm" DEPENDS="eina" BUILD_DEPENDS="eina-dev" # What is the latest version available today? current_version() { wget -O - https://git.enlightenment.org/legacy/embryo.git/ 2>/dev/null | \ sed '/h=v[0-9]/!d;s|.*>v||;s|<.*||;q' } # Rules to configure and make the package. compile_rules() { ./configure $CONFIGURE_ARGS && make $MAKEFLAGS && make install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs/usr/lib cp -a $install/usr/share $fs/usr cp -a $install/usr/bin $fs/usr cp -a $install/usr/lib/*.so* $fs/usr/lib }