# SliTaz package receipt. PACKAGE="mmx-emu" VERSION="0.6" CATEGORY="system-tools" SHORT_DESC="MMX/EMMX/3Dnow! emulator." MAINTAINER="pascal.bellard@slitaz.org" TARBALL="$PACKAGE-$VERSION.tar.gz" WEB_SITE="http://www-sop.inria.fr/members/Sylvain.Pion/progs/mmx-emu/" WGET_URL="${WEB_SITE}$TARBALL" # 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 }