blob: 66a48ef5cba1ac73af2160d60e9c7c439675f734 (
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
|
DESCRIPTION = "Legacy GNU-tar to unpack hd images on install for Zaurus spitz"
LICENSE = "GPLv2+"
LIC_FILES_CHKSUM = "file://${WORKDIR}/gnu-tar;md5=34b647d6444a9a38e269c2793c7d0bf2"
PR = "r2"
INHIBIT_DEFAULT_DEPS = "1"
SRC_URI = "http://pocketworkstation.org/files/gnu-tar.gz"
SRC_URI[md5sum] = "0c1494335e4f33ac5712d1f72de2eff2"
SRC_URI[sha256sum] = "68e12755957a27644ced166ef9093a44f81be6e04727f2759beef5968de41f61"
do_compile() {
:
}
PACKAGE_ARCH = "${MACHINE_ARCH}"
PACKAGES = ""
COMPATIBLE_MACHINE = "spitz"
inherit deploy
addtask deploy before do_populate_sysroot after do_compile
do_deploy() {
install -d ${DEPLOY_DIR_IMAGE}
install -m 0755 ${WORKDIR}/gnu-tar ${DEPLOY_DIR_IMAGE}/gnu-tar
}
|