wok view dosfstools/receipt @ rev 20223

grub: add ext4 patch
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Mar 01 10:11:27 2018 +0100 (2018-03-01)
parents 401224c936cc
children 6f4d84436b9f
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/use
28 cp -a $install/usr/sbin $fs/usr
29 }