]> git.ipfire.org Git - ipfire-3.x.git/commitdiff
unzip: Cleanup makefile.
authorMichael Tremer <michael.tremer@ipfire.org>
Wed, 17 Feb 2010 19:56:21 +0000 (20:56 +0100)
committerMichael Tremer <michael.tremer@ipfire.org>
Wed, 17 Feb 2010 19:56:21 +0000 (20:56 +0100)
Remove PKG_DEPS which is empty.
Respect our 80 coloumns limit.

pkgs/core/unzip/unzip.nm

index 9d4ce25e8cea365e395b7868ce7d22efb5a96737..c11154f14158491be8110b374f7986c16913f6c4 100644 (file)
@@ -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
-