wok view ntfsprogs/receipt @ rev 1902

linux/initramfs: tiny fix
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Dec 20 20:41:43 2008 +0000 (2008-12-20)
parents 52598e15250a
children 7d4197e5834d
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"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://www.linux-ntfs.org/"
11 WGET_URL="$SF_MIRROR/linux-ntfs/$TARBALL"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 ./configure \
18 --prefix=/usr \
19 --mandir=/usr/share/man \
20 --enable-fuse-module
21 $CONFIGURE_ARGS
22 make
23 make DESTDIR=$PWD/_pkg install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/lib
30 cp -a $_pkg/usr/bin $fs/usr
31 cp -a $_pkg/usr/sbin $fs/usr
32 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
33 cp -a $_pkg/sbin $fs
35 strip -s $fs/usr/bin/*
36 strip -s $fs/usr/sbin/*
37 strip -s $fs/usr/lib/*
38 }