From: Michael Tremer Date: Wed, 17 Feb 2010 19:56:21 +0000 (+0100) Subject: unzip: Cleanup makefile. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f379db63f7d03f369985fd936f814742ba07b22c;p=ipfire-3.x.git unzip: Cleanup makefile. Remove PKG_DEPS which is empty. Respect our 80 coloumns limit. --- diff --git a/pkgs/core/unzip/unzip.nm b/pkgs/core/unzip/unzip.nm index 9d4ce25e8..c11154f14 100644 --- a/pkgs/core/unzip/unzip.nm +++ b/pkgs/core/unzip/unzip.nm @@ -34,8 +34,6 @@ PKG_URL = ftp://ftp.info-zip.org/pub/infozip/src/ PKG_LICENSE = BSD PKG_SUMMARY = A utility for unpacking zip files. -PKG_DEPS += - define PKG_DESCRIPTION The unzip utility is used to list, test, or extract files from a zip \ archive. Zip archives are commonly found on MS-DOS systems. The zip \ @@ -47,9 +45,6 @@ endef PKG_TARBALL = $(PKG_NAME)552.tgz -############################################################################### -# Installation Details -############################################################################### CFLAGS += -D_LARGEFILE64_SOURCE define STAGE_BUILD @@ -58,7 +53,6 @@ define STAGE_BUILD endef define STAGE_INSTALL - cd $(DIR_APP) && make install prefix=$(BUILDROOT)/usr MANDIR=/usr/share/man/man1 \ - INSTALL="cp -p" + cd $(DIR_APP) && make install prefix=$(BUILDROOT)/usr \ + MANDIR=/usr/share/man/man1 INSTALL="cp -p" endef -