diff options
Diffstat (limited to 'system/patch/APKBUILD')
-rw-r--r-- | system/patch/APKBUILD | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/system/patch/APKBUILD b/system/patch/APKBUILD index 292076831..b299382c9 100644 --- a/system/patch/APKBUILD +++ b/system/patch/APKBUILD @@ -1,4 +1,4 @@ -# Maintainer: Kiyoshi Aman <kiyoshi.aman+adelie@gmail.com> +# Maintainer: Kiyoshi Aman <adelie@aerdan.vulpine.house> pkgname=patch pkgver=2.7.6 pkgrel=4 @@ -7,9 +7,8 @@ url="https://www.gnu.org/software/patch/patch.html" arch="all" license="GPL-3.0+" depends="" +checkdepends="autoconf automake bash ed" makedepends="" -checkdepends="bash ed" -install="" subpackages="$pkgname-doc" source="https://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.xz allow-missing.patch @@ -19,7 +18,6 @@ source="https://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.xz CVE-2019-13636.patch CVE-2019-13638.patch " -builddir="$srcdir"/$pkgname-$pkgver # secfixes: # 2.7.6-r2: @@ -32,7 +30,6 @@ builddir="$srcdir"/$pkgname-$pkgver # - CVE-2019-13638 build() { - cd "$builddir" ./configure \ --build=$CBUILD \ --host=$CHOST \ @@ -44,7 +41,6 @@ build() { } check() { - cd "$builddir" make SHELL=bash check } |