blob: 1d06326037ca126ebab701bca71ac783be7e4c16 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
DESCRIPTION = "pwsafe is a unix commandline program that manages encrypted password databases."
AUTHOR = "Nicolas S. Dade <ndade@nsd.dyndns.org>"
HOMEPAGE = "http://pwsafe.sf.net"
# SECTION
PRIORITY = "optional"
LICENSE = "GPLv2"
DEPENDS = "openssl readline"
SRC_URI = "${SOURCEFORGE_MIRROR}/${PN}/${P}.tar.gz"
inherit autotools
# zecke-workaround ;-) Thanks. Should contact upstream to fix their stuff
EXTRA_OECONF = " --with-openssl-dir=/bla/bla"
do_configure_prepend() {
rm ${S}/configure
}
|