CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
strace: initial import (verified compilation)
authorJose V Beneyto <sepen@crux.nu>
Thu, 24 Dec 2009 10:14:19 +0000 (11:14 +0100)
committerJose V Beneyto <sepen@crux.nu>
Thu, 24 Dec 2009 10:14:19 +0000 (11:14 +0100)
strace/.footprint [new file with mode: 0644]
strace/.md5sum [new file with mode: 0644]
strace/Pkgfile [new file with mode: 0644]

diff --git a/strace/.footprint b/strace/.footprint
new file mode 100644 (file)
index 0000000..eb42429
--- /dev/null
@@ -0,0 +1,7 @@
+drwxr-xr-x     root/root       usr/
+drwxr-xr-x     root/root       usr/bin/
+-rwxr-xr-x     root/root       usr/bin/strace
+-rwxr-xr-x     root/root       usr/bin/strace-graph
+drwxr-xr-x     root/root       usr/man/
+drwxr-xr-x     root/root       usr/man/man1/
+-rw-r--r--     root/root       usr/man/man1/strace.1.gz
diff --git a/strace/.md5sum b/strace/.md5sum
new file mode 100644 (file)
index 0000000..17c10d4
--- /dev/null
@@ -0,0 +1 @@
+2415e435d61e40315a298c80aced0cda  strace-4.5.19.tar.bz2
diff --git a/strace/Pkgfile b/strace/Pkgfile
new file mode 100644 (file)
index 0000000..3461d3f
--- /dev/null
@@ -0,0 +1,22 @@
+# Description: System call tracing utility (like trace, truss, etc)
+# URL: http://www.liacs.nl/~wichert/strace/
+# Maintainer:  Tilman Sauerbeck, tilman at crux dot nu
+# Arch Maintainer: CRUX-ARM System Team, crux-arm at mikeux dot dyndns dot org
+# Depends on:
+
+name=strace
+version=4.5.19
+release=1
+source=(http://dl.sourceforge.net/$name/$name-$version.tar.bz2)
+
+build() {
+  cd $name-$version
+
+  ./configure --build=$CHOST \
+              --host=$CTARGET \
+              --prefix=/usr \
+              --mandir=/usr/man
+
+  make
+  make DESTDIR=$PKG install
+}