wok-current annotate hubicfuse/receipt @ rev 23994
linld: no initrd fix
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Tue Dec 15 08:41:50 2020 +0000 (2020-12-15) |
parents | 9b6b7906d260 |
children | 5ea0ce1cecc0 |
rev | line source |
---|---|
pascal@17500 | 1 # SliTaz package receipt. |
pascal@17500 | 2 |
pascal@17500 | 3 PACKAGE="hubicfuse" |
Hans-G?nter@22935 | 4 VERSION="3.0.1" |
pascal@17500 | 5 CATEGORY="network" |
Hans-G?nter@22935 | 6 SHORT_DESC="Support for mounting Hubic drive." |
pascal@17500 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@17500 | 8 LICENSE="MIT" |
pascal@17500 | 9 WEB_SITE="https://github.com/TurboGit/hubicfuse" |
Hans-G?nter@22935 | 10 |
pascal@17500 | 11 TARBALL="$PACKAGE-$VERSION.tar.gz" |
Hans-G?nter@22935 | 12 WGET_URL="$WEB_SITE/archive/v$VERSION.tar.gz" |
pascal@17500 | 13 |
Hans-G?nter@22935 | 14 DEPENDS="curl fuse libjson-c libmagic libssl" |
Hans-G?nter@22935 | 15 BUILD_DEPENDS="curl-dev fuse-dev glib libjson-c-dev libmagic-dev |
Hans-G?nter@22935 | 16 libxml2-dev openssl-dev pkg-config" |
pascal@17500 | 17 |
pascal@17500 | 18 # Rules to configure and make the package. |
pascal@17500 | 19 compile_rules() |
pascal@17500 | 20 { |
Hans-G?nter@22935 | 21 export LDFLAGS="$LDFLAGS -lrt" |
Hans-G?nter@22935 | 22 |
Hans-G?nter@22935 | 23 ./configure \ |
Hans-G?nter@22935 | 24 -prefix=/usr \ |
Hans-G?nter@22935 | 25 $CONFIGURE_ARGS && |
pascal@17500 | 26 make && |
pascal@17500 | 27 make DESTDIR=$DESTDIR install |
pascal@17500 | 28 } |
pascal@17500 | 29 |
pascal@17500 | 30 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@17500 | 31 genpkg_rules() |
pascal@17500 | 32 { |
Hans-G?nter@22935 | 33 cp -a $install/* $fs |
pascal@17500 | 34 } |