]> git.ipfire.org Git - people/amarx/ipfire-3.x.git/blame - pkgs/core/bzip2/bzip2.nm
naoki: Initial checkin.
[people/amarx/ipfire-3.x.git] / pkgs / core / bzip2 / bzip2.nm
CommitLineData
166a6c21
MT
1###############################################################################
2# #
3# IPFire.org - A linux based firewall #
4# Copyright (C) 2007, 2008 Michael Tremer & Christian Schmidt #
5# #
6# This program is free software: you can redistribute it and/or modify #
7# it under the terms of the GNU General Public License as published by #
8# the Free Software Foundation, either version 3 of the License, or #
9# (at your option) any later version. #
10# #
11# This program is distributed in the hope that it will be useful, #
12# but WITHOUT ANY WARRANTY; without even the implied warranty of #
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
14# GNU General Public License for more details. #
15# #
16# You should have received a copy of the GNU General Public License #
17# along with this program. If not, see <http://www.gnu.org/licenses/>. #
18# #
19###############################################################################
20
21###############################################################################
22# Definitions
23###############################################################################
24
25include ../../Config
26
27PKG_NAME = bzip2
28PKG_VER = 1.0.5
29PKG_REL = 0
30
31PKG_MAINTAINER =
32PKG_GROUP = Applications/Compression
33PKG_URL = http://www.bzip.org/
34PKG_LICENSE = GPLv2+
35PKG_SUMMARY = Bzip2 is a data compressor.
36
37define PKG_DESCRIPTION
38 bzip2 is a freely available, patent free (see below), high-quality data \
39 compressor that is an alternative to the GNU zip compressor.
40endef
41
42PKG_TARBALL = $(THISAPP).tar.gz
43
44PKG_PATCHES += $(THISAPP)-install_docs-1.patch
45
46CFLAGS += -fPIC -D_FILE_OFFSET_BITS=64
47
48include ../../Rules
49
50###############################################################################
51# Installation Details
52###############################################################################
53
54$(STAGE_PREPARE): $(OBJECTS)
55 @$(PRE_PREPARE)
56 cd $(DIR_SRC) && $(DO_EXTRACT) $(DIR_DL)/$(PKG_TARBALL)
57
58 $(DO_PATCHES)
59
60 cd $(DIR_APP) && sed -i 's@\(ln -s -f \)\$$(PREFIX)/bin/@\1@' Makefile
61 cd $(DIR_APP) && sed -e "s/$$(CC) -shared/& $(CFLAGS)/" -i Makefile-libbz2_so
62
63 @$(POST_PREPARE)
64
65$(STAGE_BUILD): $(STAGE_PREPARE)
66 @$(PRE_BUILD)
67
68 cd $(DIR_APP) && make -f Makefile-libbz2_so
69
70 cd $(DIR_APP) && make clean
71 cd $(DIR_APP) && make $(PARALLELISMFLAGS)
72
73 @$(POST_BUILD)
74
75$(STAGE_INSTALL): $(STAGE_BUILD)
76 @$(PRE_INSTALL)
77
78 cd $(DIR_APP) && make PREFIX=$(BUILDROOT)/usr install
79
80 cd $(DIR_APP) && cp -v bzip2-shared $(BUILDROOT)/bin/bzip2
81 cd $(DIR_APP) && cp -av libbz2.so* $(BUILDROOT)/lib
82 ln -sfv ../../lib/libbz2.so.1.0 $(BUILDROOT)/usr/lib/libbz2.so
83 rm -fv $(BUILDROOT)/usr/bin/{bunzip2,bzcat,bzip2}
84 ln -sfv bzip2 $(BUILDROOT)/bin/bunzip2
85 ln -sfv bzip2 $(BUILDROOT)/bin/bzcat
86 rm -vf $(BUILDROOT)/usr/lib/libbz2.a
87
88 @$(POST_INSTALL)