blob: 767e42b04d65b8e71fa8fa5ce1d3733d092a654b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
DESCRIPTION = "File manager at the core of the ROX desktop"
HOMEPAGE = "http://rox.sf.net"
LICENSE = "GPL"
SECTION = "x11/applications"
DEPENDS = "gtk+ shared-mime-info"
RDEPENDS = "shared-mime-info"
PR = "r3"
SRC_URI = "${SOURCEFORGE_MIRROR}/rox/${P}.tar.bz2 \
file://no-strip-objcopy.patch;patch=1;pnum=3"
inherit mime pkgconfig
S = "${WORKDIR}/${P}/ROX-Filer/src/"
do_compile() {
../AppRun --compile
}
do_install() {
install -d ${D}${bindir}
install -m 755 ../ROX-Filer ${D}${bindir}
install -d ${D}${datadir}/rox/Choices
install -d ${D}${datadir}/rox/images
install -d ${D}${datadir}/mime/packages
install -d ${D}${datadir}/doc/rox/html
install -d ${D}${mandir}/man1
gzip -c9 ${WORKDIR}/${P}/rox.1 >${D}${mandir}/man1/rox.1.gz
cp -r ${WORKDIR}/${P}/Choices ${D}${datadir}/rox
rm -rf ${D}${datadir}rox/Choices/MIME-info/
cp ${WORKDIR}/${P}/ROX-Filer/*.xml ${D}${datadir}/rox
cp ${WORKDIR}/${P}/ROX-Filer/Help/{Changes,README*,TODO} ${D}${datadir}/doc/rox
cp ${WORKDIR}/${P}/ROX-Filer/Help/*html ${D}${datadir}/doc/rox/html
cp ${WORKDIR}/${P}/ROX-Filer/style.css ${D}${datadir}/doc/rox/html
cp -r ${WORKDIR}/${P}/ROX-Filer/images ${D}${datadir}/rox
cp -r ${WORKDIR}/${P}/ROX-Filer/ROX ${D}${datadir}/rox
# cp ROX-Filer/ROX-Filer ${D}/usr/bin/rox
cp ${WORKDIR}/${P}/ROX-Filer/.DirIcon ${D}${datadir}/rox/.DirIcon
cp ${WORKDIR}/${P}/rox.xml ${D}${datadir}/mime/packages
for f in ${WORKDIR}/${P}/ROX-Filer/Messages/*.gmo; do
export ROXTMP=`basename $f .gmo` ;
if [ $ROXTMP == "sp" ]; then
export ROXTMP="es" ;
fi
install -d ${D}${datadir}/locale/$ROXTMP/LC_MESSAGES;
cp $f ${D}${datadir}/locale/$ROXTMP/LC_MESSAGES/rox.mo;
done
}
FILES_${PN} += "${datadir}/rox/ ${datadir}/mime/packages"
|