# HG changeset patch # User Hans-G?nter Theisgen # Date 1559921445 -3600 # Node ID 1762c0e024180c5c0ea0d088ebaea166c7f5ebad # Parent ca2d540db8f50f5afefd1fb4225102dc3f41d189 djmount: added automake to BUILD_DEPENDS diff -r ca2d540db8f5 -r 1762c0e02418 djmount/receipt --- a/djmount/receipt Fri Jun 07 13:37:06 2019 +0100 +++ b/djmount/receipt Fri Jun 07 16:30:45 2019 +0100 @@ -12,19 +12,21 @@ TAGS="upnp" DEPENDS="fuse readline" -BUILD_DEPENDS="fuse-dev readline-dev libupnp libupnp-dev" +BUILD_DEPENDS="automake fuse-dev libupnp libupnp-dev readline-dev" # Rules to configure and make the package. compile_rules() { - cd $src sed -i 's|upnptools.h>|&\n#include |' djmount/upnp_util.h - ./configure LDFLAGS="-lupnp" \ - --prefix=/usr \ - --infodir=/usr/share/info \ - --mandir=/usr/share/man \ + + ./configure \ + LDFLAGS="-lupnp" \ + --prefix=/usr \ + --infodir=/usr/share/info \ + --mandir=/usr/share/man \ $CONFIGURE_ARGS 2>&1 | grep -v /config.rpath: && - make -j1 && make -j1 install + make -j1 && + make -j1 install } # Rules to gen a SliTaz package suitable for Tazpkg. @@ -33,4 +35,3 @@ mkdir -p $fs/usr cp -a $install/usr/bin $fs/usr } -