diff options
-rw-r--r-- | patch/.footprint | 7 | ||||
-rw-r--r-- | patch/.md5sum | 1 | ||||
-rw-r--r-- | patch/.sha256sum | 1 | ||||
-rw-r--r-- | patch/Pkgfile | 17 | ||||
-rw-r--r-- | patch/Pkgfile.old | 15 |
5 files changed, 41 insertions, 0 deletions
diff --git a/patch/.footprint b/patch/.footprint new file mode 100644 index 0000000..f88ba0f --- /dev/null +++ b/patch/.footprint @@ -0,0 +1,7 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +-rwxr-xr-x root/root usr/bin/patch +drwxr-xr-x root/root usr/share/ +drwxr-xr-x root/root usr/share/man/ +drwxr-xr-x root/root usr/share/man/man1/ +-rw-r--r-- root/root usr/share/man/man1/patch.1.bz2 diff --git a/patch/.md5sum b/patch/.md5sum new file mode 100644 index 0000000..1dd45ef --- /dev/null +++ b/patch/.md5sum @@ -0,0 +1 @@ +057d78436e858c3ed086a544f5e1fe7e patch-2.6.1.tar.xz diff --git a/patch/.sha256sum b/patch/.sha256sum new file mode 100644 index 0000000..48f041d --- /dev/null +++ b/patch/.sha256sum @@ -0,0 +1 @@ +f8da42cd777e49c4c29092d8595b36daf24cd93a38dca97f3489f1a4fb1301a0 patch-2.6.1.tar.xz diff --git a/patch/Pkgfile b/patch/Pkgfile new file mode 100644 index 0000000..e924b5b --- /dev/null +++ b/patch/Pkgfile @@ -0,0 +1,17 @@ +description="GNU patch." +packager="CRUX System Team <core-ports AT crux DOT nu>" +maintainer="Lukc <lukc AT upyum DOT com>" +url="http://www.gnu.org/software/patch/patch.html" +depends=() + +name=patch +version=2.6.1 +release=1 +source=(http://ftp.gnu.org/gnu/$name/$name-$version.tar.xz) +build () +{ + cd $name-$version; + ./configure --prefix=$prefix --mandir=$mandir; + make; + make DESTDIR=$PKG install +} diff --git a/patch/Pkgfile.old b/patch/Pkgfile.old new file mode 100644 index 0000000..60b72ad --- /dev/null +++ b/patch/Pkgfile.old @@ -0,0 +1,15 @@ +# Description: GNU patch +# URL: http://www.gnu.org/software/patch/patch.html +# Maintainer: CRUX System Team, core-ports at crux dot nu + +name=patch +version=2.6.1 +release=1 +source=(http://ftp.gnu.org/gnu/$name/$name-$version.tar.xz) + +build() { + cd $name-$version + ./configure --prefix=/usr --mandir=/usr/man + make + make DESTDIR=$PKG install +} |