wok view dosbox/receipt @ rev 3653

Add: libarchive, libarchive-dev
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Mon Jul 06 23:52:56 2009 +0200 (2009-07-06)
parents ed84890bff8c
children 061a2a674469
line source
1 # SliTaz package receipt.
3 PACKAGE="dosbox"
4 VERSION="0.73"
5 CATEGORY="system-tools"
6 SHORT_DESC="DOS-emulator that uses the SDL-library."
7 DEPENDS="xorg-libX11 libsdl alsa-lib zlib libgl libpng libsdl-net"
8 BUILD_DEPENDS="xorg-libX11-dev libsdl-dev"
9 MAINTAINER="pankso@slitaz.org"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://www.dosbox.com/"
12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure \
19 --prefix=/usr \
20 --mandir=/usr/share/man \
21 $CONFIGURE_ARGS &&
22 make &&
23 make DESTDIR=$PWD/_pkg install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/share
30 cp -a $_pkg/usr/bin $fs/usr
31 }