diff options
Diffstat (limited to 'main/patch')
-rw-r--r-- | main/patch/APKBUILD | 28 | ||||
-rw-r--r-- | main/patch/patch.post-deinstall | 3 | ||||
-rw-r--r-- | main/patch/patch.post-upgrade | 3 |
3 files changed, 34 insertions, 0 deletions
diff --git a/main/patch/APKBUILD b/main/patch/APKBUILD new file mode 100644 index 0000000000..c51e3d1e5a --- /dev/null +++ b/main/patch/APKBUILD @@ -0,0 +1,28 @@ +# Maintainer: Natanael Copa <ncopa@alpinelinux.org> +pkgname=patch +pkgver=2.6.1 +pkgrel=2 +pkgdesc="Utility to apply diffs to files" +url="http://www.gnu.org/software/patch/patch.html" +arch="all" +license='GPL' +depends= +source="ftp://ftp.gnu.org/gnu/patch/patch-2.6.tar.bz2" +subpackages="$pkgname-doc" +install="$pkgname.post-deinstall $pkgname.post-upgrade" + +_builddir="$srcdir"/$pkgname-2.6 + +build() { + cd "$_builddir" + ./configure --prefix=/usr \ + --mandir=/usr/share/man + make || return 1 +} + +package() { + cd "$_builddir" + make prefix="$pkgdir"/usr mandir="$pkgdir"/usr/share/man install +} + +md5sums="5729b1430ba6c2216e0f3eb18f213c81 patch-2.6.tar.bz2" diff --git a/main/patch/patch.post-deinstall b/main/patch/patch.post-deinstall new file mode 100644 index 0000000000..99b57c4635 --- /dev/null +++ b/main/patch/patch.post-deinstall @@ -0,0 +1,3 @@ +#!/bin/sh + +busybox --install -s diff --git a/main/patch/patch.post-upgrade b/main/patch/patch.post-upgrade new file mode 100644 index 0000000000..99b57c4635 --- /dev/null +++ b/main/patch/patch.post-upgrade @@ -0,0 +1,3 @@ +#!/bin/sh + +busybox --install -s |