wok view hfsutils/receipt @ rev 21946

updated speex and speex-dev (1.2rc1 -> 1.2.0)
author Hans-G?nter Theisgen
date Tue Oct 08 15:37:59 2019 +0100 (2019-10-08)
parents a4d79a7fa68e
children af8d823a3077
line source
1 # SliTaz package receipt.
3 PACKAGE="hfsutils"
4 VERSION="3.2.6"
5 CATEGORY="system-tools"
6 SHORT_DESC="HFS Filesystem user space tools."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="https://www.mars.org/home/rob/proj/hfs/"
11 WGET_URL="ftp://ftp.mars.org/pub/hfs/$TARBALL"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 mkdir -p $DESTDIR/usr/bin $DESTDIR/usr/share/man/man1
17 sed -i "s|DEST =.|&$DESTDIR|" Makefile.in
18 ./configure --prefix=/usr \
19 $CONFIGURE_ARGS &&
20 make &&
21 make DESTDIR=$DESTDIR install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs//usr
28 cp -a $install/usr/bin $fs/usr
29 }