diff options
-rw-r--r-- | packages/aspell/aspell-lang.inc | 23 | ||||
-rw-r--r-- | packages/aspell/aspell5-en_6.0-0.bb | 4 | ||||
-rw-r--r-- | packages/perl/perl_5.8.7.bb | 1 |
3 files changed, 27 insertions, 1 deletions
diff --git a/packages/aspell/aspell-lang.inc b/packages/aspell/aspell-lang.inc new file mode 100644 index 0000000000..709183b428 --- /dev/null +++ b/packages/aspell/aspell-lang.inc @@ -0,0 +1,23 @@ +FILES_${PN} = "/usr/lib/aspell/* /usr/share/aspell/*" + +DEPENDS = "aspell-native" + +do_configure() { + cd ${S} + export dictdir=/usr/lib/aspell/ + export datadir=/usr/share/aspell/ + DESTDIR=${D} ./configure +} + +do_compile() { + export dictdir=/usr/lib/aspell/ + export datadir=/usr/share/aspell/ + dictdir=/usr/lib/aspell oe_runmake +} + +do_install() { + export dictdir=/usr/lib/aspell/ + export datadir=/usr/share/aspell/ + oe_runmake install +} + diff --git a/packages/aspell/aspell5-en_6.0-0.bb b/packages/aspell/aspell5-en_6.0-0.bb new file mode 100644 index 0000000000..fb13e24bdf --- /dev/null +++ b/packages/aspell/aspell5-en_6.0-0.bb @@ -0,0 +1,4 @@ +SRC_URI = "ftp://ftp.gnu.org/gnu/aspell/dict/en/aspell5-en-${PV}.tar.bz2" + +include aspell-lang.inc + diff --git a/packages/perl/perl_5.8.7.bb b/packages/perl/perl_5.8.7.bb index 6743406b9b..456cc95c84 100644 --- a/packages/perl/perl_5.8.7.bb +++ b/packages/perl/perl_5.8.7.bb @@ -4,7 +4,6 @@ include perl.inc SRC_URI += "file://config.sh-armeb-linux \ file://config.sh-arm-linux \ - file://config.sh-arm-linux-gnueabi \ file://config.sh-i386-linux" PR = "r15" |