diff options
Diffstat (limited to 'recipes/beecrypt/beecrypt_3.1.0.bb')
-rw-r--r-- | recipes/beecrypt/beecrypt_3.1.0.bb | 16 |
1 files changed, 4 insertions, 12 deletions
diff --git a/recipes/beecrypt/beecrypt_3.1.0.bb b/recipes/beecrypt/beecrypt_3.1.0.bb index f9a45e74df..720d99a416 100644 --- a/recipes/beecrypt/beecrypt_3.1.0.bb +++ b/recipes/beecrypt/beecrypt_3.1.0.bb @@ -4,9 +4,10 @@ DESCRIPTION="Beecrypt is a general-purpose cryptography library." HOMEPAGE="http://sourceforge.net/projects/beecrypt" -SRC_URI="${SOURCEFORGE_MIRROR}/beecrypt/beecrypt-${PV}.tar.gz" +SRC_URI="${SOURCEFORGE_MIRROR}/beecrypt/beecrypt-${PV}.tar.gz \ + file://x64fix.patch;patch=1" -PR = "r2" +PR = "r3" inherit autotools acpaths="" @@ -14,15 +15,6 @@ acpaths="" EXTRA_OECONF="--with-arch=${TARGET_ARCH} --enable-shared --enable-static" do_stage() { - -# oe_libinstall -a -C .libs libbeecrypt ${STAGING_LIBDIR} - cp .libs/libbeecrypt.a ${STAGING_LIBDIR}/ - install -d ${STAGING_INCDIR}/ - install -d ${STAGING_INCDIR}/beecrypt - for X in beecrypt.h beecrypt.api.h memchunk.h mpnumber.h beecrypt.gnu.h mp.h mpopt.h blockmode.h endianness.h - do - install -m 0644 ${X} ${STAGING_INCDIR}/beecrypt/${X} - done - + autotools_stage_all } |