diff options
author | John Bowler <jbowler@nslu2-linux.org> | 2005-05-30 05:26:53 +0000 |
---|---|---|
committer | John Bowler <jbowler@nslu2-linux.org> | 2005-05-30 05:26:53 +0000 |
commit | a4912c88f3ebe4f5e322773b655b4300f1e39e07 (patch) | |
tree | 6dada902f817e88697c452638237a51cfbe0c0dc /packages/unzip | |
parent | 71552875068a720bb0895d283c2c3f2069e637f8 (diff) |
Fix the build of unzip-5.52 (wrong S directory)
BKrev: 429aa41duCSO1iQm4Oin9_4gWPIR3A
Diffstat (limited to 'packages/unzip')
-rw-r--r-- | packages/unzip/unzip_552.bb | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/packages/unzip/unzip_552.bb b/packages/unzip/unzip_552.bb index e69de29bb2..c873d734ce 100644 --- a/packages/unzip/unzip_552.bb +++ b/packages/unzip/unzip_552.bb @@ -0,0 +1,16 @@ +DESCRIPTION = "A (de)compression library for the ZIP format" +SECTION = "console/utils" +LICENSE = "Info-ZIP" + +SRC_URI = "ftp://ftp.info-zip.org/pub/infozip/src/unzip${PV}.tar.gz" +S = "${WORKDIR}/unzip-5.52" + +do_compile() { + make -f unix/Makefile generic +} + +do_install() { + make -f unix/Makefile install prefix=${D}${prefix} +} + + |