]> git.ipfire.org Git - people/amarx/ipfire-3.x.git/blame - pkgs/bzip2/bzip2.nm
avahi: Update to 0.6.30.
[people/amarx/ipfire-3.x.git] / pkgs / 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
a7c97434 25include $(PKGROOT)/Include
166a6c21
MT
26
27PKG_NAME = bzip2
3e69bca8 28PKG_VER = 1.0.6
166a6c21
MT
29PKG_REL = 0
30
31PKG_MAINTAINER =
bb7d617c 32PKG_GROUPS = Applications/Compression
166a6c21
MT
33PKG_URL = http://www.bzip.org/
34PKG_LICENSE = GPLv2+
35PKG_SUMMARY = Bzip2 is a data compressor.
36
72d2189b 37PKG_PACKAGES += $(PKG_NAME_REAL)-devel
48add3fd 38
166a6c21
MT
39define PKG_DESCRIPTION
40 bzip2 is a freely available, patent free (see below), high-quality data \
41 compressor that is an alternative to the GNU zip compressor.
42endef
43
44PKG_TARBALL = $(THISAPP).tar.gz
45
166a6c21
MT
46CFLAGS += -fPIC -D_FILE_OFFSET_BITS=64
47
17c0ee8a 48define STAGE_PREPARE_CMDS
166a6c21 49 cd $(DIR_APP) && sed -i 's@\(ln -s -f \)\$$(PREFIX)/bin/@\1@' Makefile
b6ca5178 50 cd $(DIR_APP) && sed -e "s/\$$(CC) -shared/& $(CFLAGS)/" -i Makefile-libbz2_so
17c0ee8a 51endef
166a6c21 52
17c0ee8a 53define STAGE_BUILD
46c7e34e 54 $(DO_FIX_LIBTOOL)
17c0ee8a 55 cd $(DIR_APP) && make -f Makefile-libbz2_so $(PARALLELISMFLAGS)
166a6c21
MT
56
57 cd $(DIR_APP) && make clean
58 cd $(DIR_APP) && make $(PARALLELISMFLAGS)
17c0ee8a 59endef
166a6c21 60
17c0ee8a 61define STAGE_INSTALL
166a6c21
MT
62 cd $(DIR_APP) && make PREFIX=$(BUILDROOT)/usr install
63
f6c2d517 64 -mkdir -pv $(BUILDROOT)/{bin,lib}
166a6c21
MT
65 cd $(DIR_APP) && cp -v bzip2-shared $(BUILDROOT)/bin/bzip2
66 cd $(DIR_APP) && cp -av libbz2.so* $(BUILDROOT)/lib
67 ln -sfv ../../lib/libbz2.so.1.0 $(BUILDROOT)/usr/lib/libbz2.so
68 rm -fv $(BUILDROOT)/usr/bin/{bunzip2,bzcat,bzip2}
69 ln -sfv bzip2 $(BUILDROOT)/bin/bunzip2
70 ln -sfv bzip2 $(BUILDROOT)/bin/bzcat
71 rm -vf $(BUILDROOT)/usr/lib/libbz2.a
29ac8c51
MT
72
73 -mkdir -pv $(BUIDLROOT)/usr/share
74 mv -vf $(BUILDROOT)/usr/man $(BUILDROOT)/usr/share/
17c0ee8a 75endef