wok annotate ntfsprogs/receipt @ rev 21414

updated make (4.1 -> 4.2.1)
author Hans-G?nter Theisgen
date Tue Apr 23 17:27:39 2019 +0100 (2019-04-23)
parents b08b0c9f0ff2
children ee53899c6189
rev   line source
pankso@47 1 # SliTaz package receipt.
pankso@47 2
pankso@47 3 PACKAGE="ntfsprogs"
pankso@47 4 VERSION="2.0.0"
pankso@202 5 CATEGORY="system-tools"
pankso@47 6 SHORT_DESC="Utilities for ntfs manipulations with FUSE module."
pankso@47 7 MAINTAINER="pankso@slitaz.org"
pascal@15000 8 LICENSE="GPL2"
pankso@47 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
pankso@47 10 WEB_SITE="http://www.linux-ntfs.org/"
pankso@47 11 WGET_URL="$SF_MIRROR/linux-ntfs/$TARBALL"
jozee@4969 12 TAGS="windows"
pankso@47 13
pascal@13427 14 DEPENDS="fuse ntfs-3g util-linux-uuid"
pascal@13427 15 BUILD_DEPENDS="fuse"
pascal@13427 16
pankso@47 17 # Rules to configure and make the package.
pankso@47 18 compile_rules()
pankso@47 19 {
pankso@47 20 cd $src
pankso@47 21 ./configure \
pankso@47 22 --prefix=/usr \
pankso@47 23 --mandir=/usr/share/man \
pascal@2463 24 --enable-fuse-module \
pascal@2460 25 $CONFIGURE_ARGS &&
pascal@2460 26 make &&
pascal@13427 27 make DESTDIR=$DESTDIR install
pankso@47 28 }
pankso@47 29
pankso@47 30 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@47 31 genpkg_rules()
pankso@47 32 {
pankso@47 33 mkdir -p $fs/usr/lib
pascal@13427 34 cp -a $install/usr/bin $fs/usr
pascal@13427 35 cp -a $install/usr/sbin $fs/usr
pascal@13427 36 cp -a $install/usr/lib/*.so* $fs/usr/lib
pascal@13427 37 cp -a $install/sbin $fs
pankso@47 38 }
pankso@47 39