wok annotate httpfs2-fuse/receipt @ rev 20235

busybox: add arch (uname -m alias)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Mar 05 15:52:59 2018 +0100 (2018-03-05)
parents
children 40db49e12216
rev   line source
pascal@19229 1 # SliTaz package receipt.
pascal@19229 2
pascal@19229 3 PACKAGE="httpfs2-fuse"
pascal@19229 4 VERSION="0.1.5"
pascal@19229 5 SOURCE="httpfs2"
pascal@19229 6 CATEGORY="system-tools"
pascal@19229 7 SHORT_DESC="HTTP/HTTPS Filesystem implemented with FUSE."
pascal@19229 8 MAINTAINER="pascal.bellard@slitaz.org"
pascal@19229 9 LICENSE="GPL2"
pascal@19229 10 TARBALL="$SOURCE-$VERSION.tar.gz"
pascal@19229 11 WEB_SITE="http://httpfs.sourceforge.net/"
pascal@19229 12 WGET_URL="$SF_MIRROR/httpfs/$TARBALL"
pascal@19229 13 PROVIDE="httpfs-fuse"
pascal@19229 14 TAGS="filesystem"
pascal@19229 15
pascal@19229 16 DEPENDS="fuse libgnutls"
pascal@19229 17 BUILD_DEPENDS="fuse-dev gnutls-dev libgnutls pkg-config"
pascal@19229 18
pascal@19229 19 # Rules to configure and make the package.
pascal@19229 20 compile_rules()
pascal@19229 21 {
pascal@19229 22 sed -i "s/^package = .*/package = $SOURCE/" Makefile
pascal@19229 23 sed -i "s/^version = .*/version = $VERSION/" Makefile
pascal@19229 24 sed -i "s/^revision = .*/revision = 1/" Makefile
pascal@19229 25 sed -i "s/a2x -f/echo skip/" Makefile
pascal@19229 26 sed -i "s/MAIN_LDFLAGS := /&-ldl -lpthread -lrt /" Makefile
pascal@19229 27 make
pascal@19229 28 }
pascal@19229 29
pascal@19229 30 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@19229 31 genpkg_rules()
pascal@19229 32 {
pascal@19229 33 mkdir -p $fs/usr/bin
pascal@19229 34 cp -a $src/httpfs2-ssl-mt $fs/usr/bin/httpfs
pascal@19229 35 }