Merge oe-devel@oe-devel.bkbits.net:packages
[vuplus_openembedded] / stat / stat_3.3.oe
1 SECTION = "console/utils"
2 DESCRIPTION = "Display all information about a file that the stat() call provides and all information a filesystem that statfs() provides."
3 LICENSE = "GPL"
4 MAINTAINER = "Holger Schurig <hs4388@mn-solutions.de>"
5
6 SRC_URI = "ftp://metalab.unc.edu/pub/Linux/utils/file/stat-3.3.tar.gz"
7
8 do_stage() {
9         true
10 }
11
12 do_install() {
13         install -d ${D}/usr/bin ${D}/usr/share/man/man1
14         install -s -m 755 stat ${D}/usr/bin
15         install -m 644 stat.1 ${D}/usr/share/man/man1
16 }