wok annotate ntfsprogs/receipt @ rev 13427
Add ntfsprogs-dev
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Thu Oct 04 11:18:42 2012 +0200 (2012-10-04) |
parents | 73641efed1cc |
children | 380ffe05937a |
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" |
pankso@47 | 8 TARBALL="$PACKAGE-$VERSION.tar.gz" |
pankso@47 | 9 WEB_SITE="http://www.linux-ntfs.org/" |
pankso@47 | 10 WGET_URL="$SF_MIRROR/linux-ntfs/$TARBALL" |
jozee@4969 | 11 TAGS="windows" |
pankso@47 | 12 |
pascal@13427 | 13 DEPENDS="fuse ntfs-3g util-linux-uuid" |
pascal@13427 | 14 BUILD_DEPENDS="fuse" |
pascal@13427 | 15 |
pankso@47 | 16 # Rules to configure and make the package. |
pankso@47 | 17 compile_rules() |
pankso@47 | 18 { |
pankso@47 | 19 cd $src |
pankso@47 | 20 ./configure \ |
pankso@47 | 21 --prefix=/usr \ |
pankso@47 | 22 --mandir=/usr/share/man \ |
pascal@2463 | 23 --enable-fuse-module \ |
pascal@2460 | 24 $CONFIGURE_ARGS && |
pascal@2460 | 25 make && |
pascal@13427 | 26 make DESTDIR=$DESTDIR install |
pankso@47 | 27 } |
pankso@47 | 28 |
pankso@47 | 29 # Rules to gen a SliTaz package suitable for Tazpkg. |
pankso@47 | 30 genpkg_rules() |
pankso@47 | 31 { |
pankso@47 | 32 mkdir -p $fs/usr/lib |
pascal@13427 | 33 cp -a $install/usr/bin $fs/usr |
pascal@13427 | 34 cp -a $install/usr/sbin $fs/usr |
pascal@13427 | 35 cp -a $install/usr/lib/*.so* $fs/usr/lib |
pascal@13427 | 36 cp -a $install/sbin $fs |
pankso@47 | 37 } |
pankso@47 | 38 |