blob: cbee2b2343e6f263c1ccc35a231a3b5b4412d0d6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
# $Id$
# Contributor: Thayer Williams <thayer@archlinux.org>
# Contributor: Hugo Doria <hugo@archlinux.org>
# Contributor: TuxSpirit<tuxspirit@archlinux.fr> 2007/11/17 21:22:36 UTC
# Contributor: Daniel J Griffiths <ghost1227@archlinux.us>
# Maintainer: Gaetan Bisson <bisson@archlinux.org>
pkgname=p7zip-libre
_pkgname=${pkgname%-libre}
pkgver=9.20
pkgrel=1
pkgdesc='Command-line version of the 7zip compressed file archiver without Rar'
arch=('i686' 'x86_64')
license=('GPL')
url='http://p7zip.sourceforge.net/'
makedepends=('yasm' 'nasm')
source=("http://downloads.sourceforge.net/sourceforge/${_pkgname}/${_pkgname}_${pkgver}_src_all.tar.bz2"
9.04-makefile.patch)
provides=("p7zip=$pkgver")
conflicts=('p7zip')
replaces=('p7zip')
sha1sums=('c976df4543ea946a65bc3f5e3d4e9baa417e5f12'
'3a3333d4703955664fdd4023c624ab4828af0ab1')
build() {
cd "${srcdir}/${_pkgname}_${pkgver}"
msg "Removing unRar"
sed -e '/Rar/d' -i makefile*
rm -rf CPP/7zip/Compress/Rar
patch -p1 -i $startdir/src/9.04-makefile.patch
[[ $CARCH = x86_64 ]] \
&& cp makefile.linux_amd64_asm makefile.machine \
|| cp makefile.linux_x86_asm_gcc_4.X makefile.machine
sed -i "s|usr/local|usr|g" makefile
make all3 OPTFLAGS="${CXXFLAGS}"
}
package() {
cd "${srcdir}/${_pkgname}_${pkgver}"
make install \
DEST_HOME="${pkgdir}/usr" \
DEST_MAN="${pkgdir}/usr/share/man" \
DEST_SHARE_DOC="http://www.bugaco.com/7zip"
install -m555 bin/7z.so ${pkgdir}/usr/lib/p7zip/
sed "s|${pkgdir}/usr|/usr|g" -i "${pkgdir}"/usr/bin/7z{,a,r}
install -Dm755 contrib/VirtualFileSystemForMidnightCommander/u7z "${pkgdir}"/usr/lib/mc/extfs.d/u7z
}
|