wok-next view fdutils/receipt @ rev 20715

Up nsd (4.1.21)
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sun May 27 13:10:46 2018 +0300 (2018-05-27)
parents 2c409915a36c
children d5aab818505e
line source
1 # SliTaz package receipt v2.
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 LICENSE="GPL2"
9 WEB_SITE="http://www.fdutils.linux.lu/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="$WEB_SITE$TARBALL"
14 BUILD_DEPENDS="flex"
16 compile_rules() {
17 mkdir -p $DESTDIR/etc
18 sed \
19 -e "s|^bindir.*|bindir = $DESTDIR/usr/bin|" \
20 -e "s|^sysconfdir.*|sysconfdir = $DESTDIR/etc|" \
21 -i src/Makefile*
23 ./configure $CONFIGURE_ARGS &&
24 make DESTDIR=$DESTDIR install-prog
25 }
27 genpkg_rules() {
28 copy @std
29 TAGS="floppy formatter"
30 }