]> git.ipfire.org Git - people/ms/ipfire-3.x.git/blame - pkgs/tar/tar.nm
PKG_GROUP -> PKG_GROUPS on all packages.
[people/ms/ipfire-3.x.git] / pkgs / tar / tar.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 = tar
d84a4f26 28PKG_VER = 1.26
bd523de6 29PKG_REL = 1
166a6c21
MT
30
31PKG_MAINTAINER =
bb7d617c 32PKG_GROUPS = System/Packaging
166a6c21
MT
33PKG_URL = http://www.gnu.org/software/tar/
34PKG_LICENSE = GPLv3+
35PKG_SUMMARY = A GNU file archiving program.
36
bd523de6
MT
37PKG_BUILD_DEPS+= autoconf automake gettext libacl-devel libattr-devel \
38 libselinux-devel
166a6c21
MT
39
40define PKG_DESCRIPTION
41 The GNU tar program saves many files together in one archive \
42 and can restore individual files (or all of the files) from \
43 that archive. Tar can also be used to add supplemental files \
44 to an archive and to update or list files in the archive. Tar \
45 includes multivolume support,automatic archive \
46 compression/decompression, the ability to perform remote archives, \
47 and the ability to perform incremental and full backups.
48endef
49
bd523de6 50PKG_TARBALL = $(THISAPP).tar.xz
166a6c21 51
bd523de6 52CONFIGURE_ENVIRONMENT = FORCE_UNSAFE_CONFIGURE=1
166a6c21 53
a167c52e
SS
54CONFIGURE_OPTIONS += \
55 --bindir=/bin \
77eff67b
SS
56 --libexecdir=/usr/sbin \
57 --enable-selinux
e7a5bed3 58
3300f6e5 59define STAGE_PREPARE_CMDS
bd523de6 60 cd $(DIR_APP) && autoreconf -vfi
3300f6e5
MT
61endef
62
39b5c958 63define STAGE_TEST
39b5c958
SS
64 cd $(DIR_APP) && make check
65endef