blob: 9d55cabd47f9fd422eaff73a4da501a3d338ab1b (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
DESCRIPTION="FUSE file system to navigate, extract, create and modify ZIP archives based on libzip"
HOMEPAGE="http://code.google.com/p/fuse-zip/"
SRC_URI="http://fuse-zip.googlecode.com/files/${P}.tar.gz"
LICENSE="LGPL-3"
SLOT="0"
KEYWORDS="~x86"
IUSE=""
DEPEND="dev-libs/libzip
sys-fs/fuse"
RDEPEND="${DEPEND}"
src_unpack() {
unpack ${A}
cd "${S}"
# Fix strip than installing fuse-zip
sed -i -e 's/install -m 755 -s/install -m 755/' Makefile || die "sed failed"
}
src_install() {
emake INSTALLPREFIX="${D}"/usr install || die "Failed to install"
prepalldocs
}
|