diff options
author | Graeme Gregory <dp@xora.org.uk> | 2006-03-08 15:08:15 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2006-03-08 15:08:15 +0000 |
commit | 8fdff86fd5be58df4bfdc669f14a39c428498ad1 (patch) | |
tree | a5147b1a8b721383bba78aed1566644ce0278bbc /packages/file/file_4.16.bb | |
parent | c3cbaccb8b2e9249655f76be8a828dcbd56c8f65 (diff) | |
parent | 2f81f768373c2ffd26c88ea0f77b5582de975572 (diff) |
merge of 92a452f12d8cc21518953fccb816b6da6d8cbfb6
and e5ee771a5576db06a02a6c49061082909e18705e
Diffstat (limited to 'packages/file/file_4.16.bb')
-rw-r--r-- | packages/file/file_4.16.bb | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/packages/file/file_4.16.bb b/packages/file/file_4.16.bb new file mode 100644 index 0000000000..3e579c5ef4 --- /dev/null +++ b/packages/file/file_4.16.bb @@ -0,0 +1,18 @@ +DESCRIPTION = "File attempts to classify files depending \ +on their contents and prints a description if a match is found." +SECTION = "console/utils" +LICENSE = "BSD-ADV" +DEPENDS = "file-native" + +SRC_URI = "ftp://ftp.astron.com/pub/file/file-${PV}.tar.gz" +S = "${WORKDIR}/file-${PV}" + +inherit autotools + +do_configure_prepend() { + sed -i -e 's,$(top_builddir)/src/file,file,' ${S}/magic/Makefile.am +} + +do_stage() { + autotools_stage_all +} |