From 6d908a38e05b9d4135c65d23114a5874215b5bb8 Mon Sep 17 00:00:00 2001 From: Lukc Date: Sat, 11 Dec 2010 19:15:23 +0100 Subject: Engagement initial. --- diffutils/.footprint | 12 ++++++++++++ diffutils/.md5sum | 1 + diffutils/Pkgfile | 18 ++++++++++++++++++ diffutils/Pkgfile.old | 18 ++++++++++++++++++ 4 files changed, 49 insertions(+) create mode 100644 diffutils/.footprint create mode 100644 diffutils/.md5sum create mode 100644 diffutils/Pkgfile create mode 100644 diffutils/Pkgfile.old (limited to 'diffutils') diff --git a/diffutils/.footprint b/diffutils/.footprint new file mode 100644 index 0000000..9820a5f --- /dev/null +++ b/diffutils/.footprint @@ -0,0 +1,12 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +-rwxr-xr-x root/root usr/bin/cmp +-rwxr-xr-x root/root usr/bin/diff +-rwxr-xr-x root/root usr/bin/diff3 +-rwxr-xr-x root/root usr/bin/sdiff +drwxr-xr-x root/root usr/man/ +drwxr-xr-x root/root usr/man/man1/ +-rw-r--r-- root/root usr/man/man1/cmp.1.gz +-rw-r--r-- root/root usr/man/man1/diff.1.gz +-rw-r--r-- root/root usr/man/man1/diff3.1.gz +-rw-r--r-- root/root usr/man/man1/sdiff.1.gz diff --git a/diffutils/.md5sum b/diffutils/.md5sum new file mode 100644 index 0000000..4aebe0f --- /dev/null +++ b/diffutils/.md5sum @@ -0,0 +1 @@ +7624eb7e6b53ea3ce38958a092d2216e diffutils-3.0.tar.xz diff --git a/diffutils/Pkgfile b/diffutils/Pkgfile new file mode 100644 index 0000000..4a6c7aa --- /dev/null +++ b/diffutils/Pkgfile @@ -0,0 +1,18 @@ +description="Package with the GNU diff, diff3, sdiff, and cmp utilities" +packager="" +maintainer="CRUX System Team, core-ports at crux dot nu" +url="http://www.gnu.org/software/diffutils/" +depends=() + +name=diffutils +version=3.0 +release=1 +source=(http://ftp.gnu.org/gnu/diffutils/diffutils-3.0.tar.xz) +build () +{ + cd $name-$version; + ./configure --prefix=/usr --mandir=/usr/man --disable-nls; + make; + make DESTDIR=$PKG install; + rm -r $PKG/usr/share +} diff --git a/diffutils/Pkgfile.old b/diffutils/Pkgfile.old new file mode 100644 index 0000000..40745e8 --- /dev/null +++ b/diffutils/Pkgfile.old @@ -0,0 +1,18 @@ +# Description: Package with the GNU diff, diff3, sdiff, and cmp utilities +# URL: http://www.gnu.org/software/diffutils/ +# Maintainer: CRUX System Team, core-ports at crux dot nu + +name=diffutils +version=3.0 +release=1 +source=(http://ftp.gnu.org/gnu/$name/$name-$version.tar.xz) + +build() { + cd $name-$version + ./configure --prefix=/usr \ + --mandir=/usr/man \ + --disable-nls + make + make DESTDIR=$PKG install + rm -r $PKG/usr/share +} -- cgit v1.2.3-54-g00ecf