blob: 15f78e732d67b34fc64260d78ce1278f31ad5213 (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/sqeed/sqeed-0.2.2.ebuild,v 1.8 2003/03/11 20:50:08 seemant Exp $
S="${WORKDIR}/${P}"
DESCRIPTION="A simple bash script holding a database with notes."
SRC_URI="http://areanaos.cjb.net/${P}.tar.gz"
HOMEPAGE="http://areanaos.cjb.net/scode.html"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86"
DEPEND="app-shells/bash"
src_install() {
insinto /etc/
doins ${FILESDIR}/sqeed.data
fperms 666 /etc/sqeed.data
fperms 755 ./sqeed
dobin sqeed
dodoc install license
}
|