wok view dosfstools/receipt @ rev 21399

mana, newsbeuter: fix build
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Apr 22 19:45:31 2019 +0200 (2019-04-22)
parents cd7983242740
children 5ea0ce1cecc0
line source
1 # SliTaz package receipt.
3 PACKAGE="dosfstools"
4 VERSION="4.1"
5 CATEGORY="system-tools"
6 SHORT_DESC="Tools to create and check dos filesystems."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL3"
9 TARBALL="$PACKAGE-$VERSION.tar.xz"
10 WEB_SITE="https://github.com/$PACKAGE/$PACKAGE"
11 WGET_URL="$WEB_SITE/releases/download/v$VERSION/$TARBALL"
12 HOST_ARCH="i486 arm"
14 BUILD_DEPENDS="wget"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 ./configure &&
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/sbin $fs/usr
29 }