# SliTaz package receipt. PACKAGE="mmx-emu" VERSION="0.6" CATEGORY="system-tools" SHORT_DESC="MMX/EMMX/3Dnow! emulator." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="GPL2" TARBALL="$PACKAGE-$VERSION.tar.gz" WEB_SITE="http://www-sop.inria.fr/members/Sylvain.Pion/progs/mmx-emu/" WGET_URL="${WEB_SITE}$TARBALL" TAGS="emulator MMX 3Dnow" # What is the latest version available today? current_version() { wget -O - ${WGET_URL%/*} 2>/dev/null | \ sed "/latest/d;/$PACKAGE-/!d;/tar/!d;s|.*$PACKAGE-\\(.*\\).tar.*\".*|\\1|" | sort -Vr | sed q } # Rules to configure and make the package. compile_rules() { cd $src make } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs/usr/lib cp -a $src/libmmxemu.so $fs/usr/lib } # Pre and post install commands for Tazpkg. post_install() { cat << EOT To make it work on the program "program", just type: LD_PRELOAD=/usr/lib/libmmxemu.so program EOT }