wok-next view fdutils/receipt @ rev 21020

Cleaning is almost finished... I should proceed to upgrades.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Nov 02 14:15:08 2018 +0200 (2018-11-02)
parents 757d032c55c7
children c48dff53ea67
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 $install/etc
18 sed \
19 -e "s|^bindir.*|bindir = $install/usr/bin|" \
20 -e "s|^sysconfdir.*|sysconfdir = $install/etc|" \
21 -i src/Makefile*
23 ./configure $CONFIGURE_ARGS &&
24 make DESTDIR=$install install-prog
25 }
27 genpkg_rules() {
28 copy @std
29 TAGS="floppy formatter"
30 }