diff options
Diffstat (limited to 'recipes/pwsafe/pwsafe_0.2.0.bb')
-rw-r--r-- | recipes/pwsafe/pwsafe_0.2.0.bb | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/recipes/pwsafe/pwsafe_0.2.0.bb b/recipes/pwsafe/pwsafe_0.2.0.bb new file mode 100644 index 0000000000..1d06326037 --- /dev/null +++ b/recipes/pwsafe/pwsafe_0.2.0.bb @@ -0,0 +1,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 +} |