blob: 709183b428aecf38adbde132c43e7313e77a9cc8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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
}
|