wok-6.x annotate curlftpfs/receipt @ rev 9745
Fixed binutils to work with tazwok. Need to cd $src before mkdir -p ../binutils-build. This will not chanage anything with cookutils.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Mon May 09 22:07:48 2011 +0000 (2011-05-09) |
parents | 35f9b82e7363 |
children | 380ffe05937a |
rev | line source |
---|---|
erjo@460 | 1 # SliTaz package receipt. |
erjo@460 | 2 |
erjo@460 | 3 PACKAGE="curlftpfs" |
erjo@2956 | 4 VERSION="0.9.2" |
erjo@460 | 5 CATEGORY="system-tools" |
erjo@460 | 6 SHORT_DESC="Using FUSE to access FTP servers." |
erjo@784 | 7 MAINTAINER="erjo@slitaz.org" |
pankso@3406 | 8 DEPENDS="fuse curl glib zlib" |
pascal@1514 | 9 BUILD_DEPENDS="fuse fuse-dev curl curl-dev glib-dev" |
erjo@460 | 10 TARBALL="$PACKAGE-$VERSION.tar.gz" |
erjo@460 | 11 WEB_SITE="http://curlftpfs.sourceforge.net/" |
erjo@460 | 12 WGET_URL="http://downloads.sourceforge.net/curlftpfs/$TARBALL" |
erjo@460 | 13 |
erjo@460 | 14 # Rules to configure and make the package. |
erjo@460 | 15 compile_rules() |
erjo@460 | 16 { |
erjo@460 | 17 cd $src |
pascal@1514 | 18 ./configure --prefix=/usr $CONFIGURE_ARGS && |
pascal@1514 | 19 make && |
erjo@460 | 20 make DESTDIR=$PWD/_pkg install |
erjo@460 | 21 } |
erjo@460 | 22 |
erjo@460 | 23 # Rules to gen a SliTaz package suitable for Tazpkg. |
erjo@460 | 24 genpkg_rules() |
erjo@460 | 25 { |
erjo@460 | 26 mkdir -p $fs/usr |
erjo@460 | 27 cp -a $_pkg/usr/bin $fs/usr |
erjo@460 | 28 } |