Magellan Linux

Contents of /trunk/core/xz-utils/xz-utils-5.2.3-r2.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 30418 - (show annotations) (download)
Thu Jan 18 14:32:45 2018 UTC (6 years, 3 months ago) by niro
File size: 873 byte(s)
auto added: ver bump to 5.2.3-r2
1 # $Id$
2
3 PNAME="xz-utils"
4 PVER="5.2.3"
5 PBUILD="r2"
6
7 PCAT="app-arch"
8
9 DESCRIPTION="Library and command line tools for XZ and LZMA compressed files."
10 HOMEPAGE="http://tukaani.org/xz/"
11
12 DEPEND=">= virtual/glibc"
13 PROVIDE="virtual/xz-utils"
14
15 SRCFILE="xz-${PVER}.tar.bz2"
16 SRCDIR="${BUILDDIR}/xz-${PVER}"
17
18 sminclude multilib mbuild
19
20 SRC_URI=(
21 http://tukaani.org/xz/${SRCFILE}
22 mirror://${PNAME}/${SRCFILE}
23 )
24
25 UP2DATE="updatecmd ${HOMEPAGE} | firsttarball"
26
27 src_compile()
28 {
29 mconfigure \
30 --docdir=/usr/share/doc/${PNAME}-${PVER} \
31 --enable-dynamic=yes \
32 --enable-threads \
33 --enable-nls \
34 || die
35
36 mmake || die
37 }
38
39 src_install()
40 {
41 mmake DESTDIR=${BINDIR} install || die
42 minstalldocs AUTHORS ChangeLog COPYING* NEWS README THANKS TODO || die
43 # compress all docs (some get installed but not compressed)
44 compressdoc -g -9 ${BINDIR}/usr/share/doc/${PNAME}-${PVER} || die
45 }