wok view fdutils/receipt @ rev 14742

Normalize LICENSE and some TAGS and CATEGORY.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Jun 14 12:25:09 2013 +0000 (2013-06-14)
parents 9b6bb1d6033f
children 7896f0694ef6
line source
1 # SliTaz package receipt.
3 PACKAGE="fdutils"
4 VERSION="5.5"
5 CATEGORY="system-tools"
6 SHORT_DESC="Utilities for configuring and formatting floppy."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://www.fdutils.linux.lu/"
10 WGET_URL="$WEB_SITE$TARBALL"
11 TAGS="floppy formatter"
13 DEPENDS=""
14 BUILD_DEPENDS="flex"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 mkdir -p $DESTDIR/etc
21 sed -i -e "s|^bindir.*|bindir = $DESTDIR/usr/bin|" \
22 -e "s|^sysconfdir.*|sysconfdir = $DESTDIR/etc|" \
23 src/Makefile*
24 ./configure $CONFIGURE_ARGS &&
25 make DESTDIR=$DESTDIR install-prog
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 cp -a $install/* $fs
32 }