summaryrefslogtreecommitdiffstats
path: root/file
diff options
context:
space:
mode:
authorLukc <lukc@upyum.com>2010-12-11 19:15:23 +0100
committerLukc <lukc@upyum.com>2010-12-11 19:15:35 +0100
commit6d908a38e05b9d4135c65d23114a5874215b5bb8 (patch)
treeb5e6da6d95b9a1235d82032b509b80483a886ff5 /file
downloadbase-6d908a38e05b9d4135c65d23114a5874215b5bb8.tar.gz
base-6d908a38e05b9d4135c65d23114a5874215b5bb8.tar.bz2
base-6d908a38e05b9d4135c65d23114a5874215b5bb8.tar.xz
base-6d908a38e05b9d4135c65d23114a5874215b5bb8.zip
Engagement initial.
Diffstat (limited to 'file')
-rw-r--r--file/.footprint21
-rw-r--r--file/.md5sum1
-rw-r--r--file/Pkgfile18
-rw-r--r--file/Pkgfile.old17
4 files changed, 57 insertions, 0 deletions
diff --git a/file/.footprint b/file/.footprint
new file mode 100644
index 0000000..bb59eb9
--- /dev/null
+++ b/file/.footprint
@@ -0,0 +1,21 @@
+drwxr-xr-x root/root usr/
+drwxr-xr-x root/root usr/bin/
+-rwxr-xr-x root/root usr/bin/file
+drwxr-xr-x root/root usr/include/
+-rw-r--r-- root/root usr/include/magic.h
+drwxr-xr-x root/root usr/lib/
+-rw-r--r-- root/root usr/lib/libmagic.a
+-rwxr-xr-x root/root usr/lib/libmagic.la
+lrwxrwxrwx root/root usr/lib/libmagic.so -> libmagic.so.1.0.0
+lrwxrwxrwx root/root usr/lib/libmagic.so.1 -> libmagic.so.1.0.0
+-rwxr-xr-x root/root usr/lib/libmagic.so.1.0.0
+drwxr-xr-x root/root usr/man/
+drwxr-xr-x root/root usr/man/man1/
+-rw-r--r-- root/root usr/man/man1/file.1.gz
+drwxr-xr-x root/root usr/man/man3/
+-rw-r--r-- root/root usr/man/man3/libmagic.3.gz
+drwxr-xr-x root/root usr/man/man5/
+-rw-r--r-- root/root usr/man/man5/magic.5.gz
+drwxr-xr-x root/root usr/share/
+drwxr-xr-x root/root usr/share/misc/
+-rw-r--r-- root/root usr/share/misc/magic.mgc
diff --git a/file/.md5sum b/file/.md5sum
new file mode 100644
index 0000000..8b820ed
--- /dev/null
+++ b/file/.md5sum
@@ -0,0 +1 @@
+accade81ff1cc774904b47c72c8aeea0 file-5.04.tar.gz
diff --git a/file/Pkgfile b/file/Pkgfile
new file mode 100644
index 0000000..8d4dae9
--- /dev/null
+++ b/file/Pkgfile
@@ -0,0 +1,18 @@
+description="File type identification utility"
+packager=""
+maintainer="CRUX System Team, core-ports at crux dot nu"
+url="http://www.darwinsys.com/file/"
+depends=(zlib)
+
+name=file
+version=5.04
+release=1
+source=(ftp://ftp.fu-berlin.de/unix/tools/file/file-5.04.tar.gz)
+build ()
+{
+ cd $name-$version;
+ ./configure --prefix=/usr --mandir=/usr/man --enable-fsect-man5;
+ make;
+ make DESTDIR=$PKG install;
+ rmdir $PKG/usr/man/man4
+}
diff --git a/file/Pkgfile.old b/file/Pkgfile.old
new file mode 100644
index 0000000..3ae06fe
--- /dev/null
+++ b/file/Pkgfile.old
@@ -0,0 +1,17 @@
+# Description: File type identification utility
+# URL: http://www.darwinsys.com/file/
+# Maintainer: CRUX System Team, core-ports at crux dot nu
+# Depends on: zlib
+
+name=file
+version=5.04
+release=1
+source=(ftp://ftp.fu-berlin.de/unix/tools/file/$name-$version.tar.gz)
+
+build() {
+ cd $name-$version
+ ./configure --prefix=/usr --mandir=/usr/man --enable-fsect-man5
+ make
+ make DESTDIR=$PKG install
+ rmdir $PKG/usr/man/man4
+}