]> git.ipfire.org Git - ipfire-3.x.git/blob - pkgs/core/tar/tar.nm
tar: Update to 1.25.
[ipfire-3.x.git] / pkgs / core / tar / tar.nm
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
25 include $(PKGROOT)/Include
26
27 PKG_NAME = tar
28 PKG_VER = 1.25
29 PKG_REL = 1
30
31 PKG_MAINTAINER =
32 PKG_GROUP = System/Packaging
33 PKG_URL = http://www.gnu.org/software/tar/
34 PKG_LICENSE = GPLv3+
35 PKG_SUMMARY = A GNU file archiving program.
36
37 PKG_BUILD_DEPS+= autoconf automake gettext libacl-devel libattr-devel \
38 libselinux-devel
39
40 define 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.
48 endef
49
50 PKG_TARBALL = $(THISAPP).tar.xz
51
52 CONFIGURE_ENVIRONMENT = FORCE_UNSAFE_CONFIGURE=1
53
54 CONFIGURE_OPTIONS += \
55 --bindir=/bin \
56 --libexecdir=/usr/sbin \
57 --enable-selinux
58
59 define STAGE_PREPARE_CMDS
60 cd $(DIR_APP) && autoreconf -vfi
61 endef
62
63 define STAGE_TEST
64 cd $(DIR_APP) && make check
65 endef