wok view posixovl/receipt @ rev 13580

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