wok view ntfsprogs/receipt @ rev 11699

Up: slitaz-boot-scripts (4.6.1)
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Sun Feb 19 12:08:34 2012 +0100 (2012-02-19)
parents 02bbaa9d12ba
children 73641efed1cc
line source
1 # SliTaz package receipt.
3 PACKAGE="ntfsprogs"
4 VERSION="2.0.0"
5 CATEGORY="system-tools"
6 SHORT_DESC="Utilities for ntfs manipulations with FUSE module."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="fuse ntfs-3g util-linux-ng-uuid"
9 BUILD_DEPENDS="fuse"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://www.linux-ntfs.org/"
12 WGET_URL="$SF_MIRROR/linux-ntfs/$TARBALL"
13 TAGS="windows"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure \
20 --prefix=/usr \
21 --mandir=/usr/share/man \
22 --enable-fuse-module \
23 $CONFIGURE_ARGS &&
24 make &&
25 make DESTDIR=$PWD/_pkg install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr/lib
32 cp -a $_pkg/usr/bin $fs/usr
33 cp -a $_pkg/usr/sbin $fs/usr
34 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
35 cp -a $_pkg/sbin $fs
36 }