blob: e282a379538666853f354290292c337816240277 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
MY_P=${P/fur/FUR}
DESCRIPTION="Mount a Windows CE based device on your Linux file system using
FUSE."
HOMEPAGE="http://www.infis.univ.trieste.it/~riccardo/"
SRC_URI="http://www.infis.univ.trieste.it/~riccardo/downloads/${MY_P}.tar.gz"
LICENSE="public-domain"
SLOT="0"
KEYWORDS="~x86"
IUSE=""
DEPEND="app-pda/synce-librapi2 app-pda/synce-libsynce sys-fs/fuse"
S=${WORKDIR}/${MY_P}
src_install() {
dobin ${S}/Fur
}
|