blob: 05b017122e50314406eb7e459bb13a30ff07083e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
SECTION = "base"
DESCRIPTION = "Squashfs is a highly compressed read-only filesystem for Linux."
MAINTAINER = "Chris Larson <kergoth@handhelds.org>"
LICENSE = "GPLv2"
SRC_URI = "${SOURCEFORGE_MIRROR}/squashfs/squashfs${@oe.data.getVar('PV',d,1).replace('r','-r')}.tar.gz \
file://flags.patch;patch=1"
S = "${WORKDIR}/squashfs${PV}/squashfs-tools"
prefix = ""
do_install () {
install -d ${D}/${sbindir}
install -m 0755 mksquashfs ${D}/${sbindir}/
}
|