wok annotate posixovl/receipt @ rev 12353

lmms: update bdeps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Apr 19 22:01:09 2012 +0200 (2012-04-19)
parents eb374ef371b3
children a07f343afac0
rev   line source
pascal@10913 1 # SliTaz package receipt.
pascal@10913 2
pascal@10913 3 PACKAGE="posixovl"
pascal@11987 4 VERSION="1.2"
pascal@10913 5 CATEGORY="system-tools"
pascal@10913 6 SHORT_DESC="A modern equivalent of the UMSDOS."
pascal@10913 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@11987 8 TARBALL="$PACKAGE-$VERSION.tar.xz"
pascal@10913 9 WEB_SITE="http://$PACKAGE.sourceforge.net/"
pascal@10913 10 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
pascal@10913 11
pascal@10913 12 DEPENDS="fuse attr"
pascal@10913 13 BUILD_DEPENDS="autoconf automake fuse-dev attr-dev"
pascal@10913 14
pascal@10913 15 # Rules to configure and make the package.
pascal@10913 16 compile_rules()
pascal@10913 17 {
pascal@10913 18 mv $PACKAGE $src 2> /dev/null
pascal@10913 19 cd $src
pascal@10913 20 sh autogen.sh
pascal@10913 21 ./configure --prefix=/usr --mandir=/usr/share/man \
pascal@10913 22 $CONFIGURE_ARGS &&
pascal@10913 23 make
pascal@10913 24 }
pascal@10913 25
pascal@10913 26 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@10913 27 genpkg_rules()
pascal@10913 28 {
pascal@10913 29 mkdir -p $fs/usr/sbin
pascal@10913 30 cp $src/mount.posixovl $fs/usr/sbin
pascal@10913 31 }