summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLukc <lukc@upyum.com>2010-12-12 04:35:06 +0100
committerLukc <lukc@upyum.com>2010-12-12 04:35:06 +0100
commit422c828aea452052911de29c85d1c212852c3ebb (patch)
treea8fccc96f8734793ee2157bf36eae10302a1bef8
parentccf06197e05481b1b4e2bc7063b65ac36d45e755 (diff)
downloaddevel-422c828aea452052911de29c85d1c212852c3ebb.tar.gz
devel-422c828aea452052911de29c85d1c212852c3ebb.tar.bz2
devel-422c828aea452052911de29c85d1c212852c3ebb.tar.xz
devel-422c828aea452052911de29c85d1c212852c3ebb.zip
Recette de patch ajoutée.
-rw-r--r--patch/.footprint7
-rw-r--r--patch/.md5sum1
-rw-r--r--patch/.sha256sum1
-rw-r--r--patch/Pkgfile17
-rw-r--r--patch/Pkgfile.old15
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
+}