diff options
author | Michael Lauer <mickey@vanille-media.de> | 2007-07-11 11:12:11 +0000 |
---|---|---|
committer | Michael Lauer <mickey@vanille-media.de> | 2007-07-11 11:12:11 +0000 |
commit | f93a8fefcc42bbb871d1b26e9a814c08954c42c7 (patch) | |
tree | 7e2e5feb4c5d29fa79a50b24fd15d74465386748 /packages/file/file_4.21.bb | |
parent | f6cb8f55812b954a8964b56e6c872df9cc39e7cd (diff) |
file: update 4.20 to 4.21, 4.21 contains security and build fixes for some archs
Diffstat (limited to 'packages/file/file_4.21.bb')
-rw-r--r-- | packages/file/file_4.21.bb | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/packages/file/file_4.21.bb b/packages/file/file_4.21.bb new file mode 100644 index 0000000000..758f7f36fa --- /dev/null +++ b/packages/file/file_4.21.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.fi.debian.org/pub/gentoo/distfiles/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 +} |