# SliTaz package receipt. PACKAGE="pce" VERSION="20220220-991c55d9" CATEGORY="misc" SHORT_DESC="A collection of microcomputer emulators." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="GPL2" TARBALL="$PACKAGE-$VERSION.tar.gz" WEB_SITE="http://www.hampa.ch/pce/about.html" WGET_URL="http://www.hampa.ch/pub/pce/pre/$PACKAGE-$VERSION/$TARBALL" TAGS="emulator atari macplus" DEPENDS="readline ncurses libsdl xorg-libX11 libxcb xorg-libXau xorg-libXdmcp" BUILD_DEPENDS="readline-dev ncurses-dev libsdl-dev xorg-dev" # What is the latest version available today? current_version() { wget -O - http://www.hampa.ch/pce/download.html 2>/dev/null | \ sed "/latest/d;/$PACKAGE-[0-9]/!d;/tar/!d;s|.*$PACKAGE-\\(.*\\).tar.*|\\1|" | sort -Vr | sed q } # Rules to configure and make the package. compile_rules() { ./configure --prefix=/usr \ --sysconfdir=/etc \ --mandir=/usr/share/man \ $CONFIGURE_ARGS && make && make DESTDIR=$DESTDIR install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { cp -a $install/* $fs/ }