1 Commits

Author SHA1 Message Date
Jay Larson
fdbc576499 The following changes were made:
* Now depends on libnettle rather than nettle
  * Added REPO and BRIEF
  * Removed usr/share/info/dir from package
2018-07-08 16:15:47 -05:00

View File

@@ -8,12 +8,14 @@
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details. # GNU General Public License for more details.
DEPENDS = gnutls,nettle,zlib DEPENDS = gnutls,libnettle,zlib
ARCH = x86_64 ARCH = x86_64
URL = https://www.gnu.org/software/wget/ URL = https://www.gnu.org/software/wget/
REPO = main
BRIEF = Tool for retrieving files via HTTP, HTTPS, and FTP
DESC = GNU Wget is a free software package for retrieving files using \ DESC = GNU Wget is a free software package for retrieving files using \
HTTP, HTTPS and FTP, the most widely-used Internet protocols HTTP, HTTPS and FTP, the most widely-used Internet protocols
SNAPVER = 1 SNAPVER = 2
ARCHIVE := $(PWD)/SRC/$(shell ls SRC|egrep '(bz2|gz|tar|xz)$$'|tail -1) ARCHIVE := $(PWD)/SRC/$(shell ls SRC|egrep '(bz2|gz|tar|xz)$$'|tail -1)
TYPE := $(shell file -ib $(ARCHIVE)|cut -d';' -f1|tr -d '\n') TYPE := $(shell file -ib $(ARCHIVE)|cut -d';' -f1|tr -d '\n')
@@ -61,7 +63,8 @@ $(ROOT): $(SRCDIR)/src/wget
mkdir -v $(ROOT); \ mkdir -v $(ROOT); \
fi fi
@cd $(SRCDIR) && make install DESTDIR=$(ROOT) @cd $(SRCDIR) && make install DESTDIR=$(ROOT) && \
rm -v $(ROOT)/usr/share/info/dir
test: $(ROOT) test: $(ROOT)
@cd $(SRCDIR); \ @cd $(SRCDIR); \