~alpine/aports

testing/patchelf: new aport v1 PROPOSED

Michael Koloberdin <koloberdin@gmail.com>
Michael Koloberdin: 1
 testing/patchelf: new aport

 1 files changed, 39 insertions(+), 0 deletions(-)
Michael Koloberdin <koloberdin@gmail.com>
That test should not fail. (it should not exit on an expected failure code
but should go on to further checks)
This patch fixes it: http://patchwork.alpinelinux.org/patch/2216/

On Sat, Jul 9, 2016 at 11:32 AM, Bartłomiej Piotrowski <b@bpiotrowski.pl>
wrote:
Next
Export patchset (mbox)
How do I use this?

Copy & paste the following snippet into your terminal to import this patchset into git:

curl -s https://lists.alpinelinux.org/~alpine/aports/patches/1328/mbox | git am -3
Learn more about email & git

[alpine-aports] [PATCH] testing/patchelf: new aport Export this patch

Michael Koloberdin <koloberdin@gmail.com>
---
 testing/patchelf/APKBUILD | 39 +++++++++++++++++++++++++++++++++++++++
 1 file changed, 39 insertions(+)
 create mode 100644 testing/patchelf/APKBUILD

diff --git a/testing/patchelf/APKBUILD b/testing/patchelf/APKBUILD
new file mode 100644
index 0000000..735fff3
--- /dev/null
+++ b/testing/patchelf/APKBUILD
@@ -0,0 +1,39 @@
# Contributor:
# Maintainer: Michael Koloberdin <koloberdin@gmail.com>
pkgname=patchelf
pkgver=0.9
pkgrel=0
pkgdesc="Small utility to modify the dynamic linker and RPATH of ELF executables"
url="https://nixos.org/patchelf.html"
arch="all"
license="GPL3"
depends=""
makedepends="autoconf automake"
install=""
subpackages="$pkgname-doc"
source="${pkgname}-${pkgver}.tar.gz::https://github.com/NixOS/patchelf/archive/${pkgver}.tar.gz"
builddir="$srcdir/$pkgname-$pkgver"

prepare() {
	cd "$builddir"
	autoreconf -fiv || return 1
}

build() {
	cd "$builddir"
	./configure --prefix=/usr || return 1
	make || return 1
}

check() {
	make -C tests -j1 check || return 1
}

package() {
	cd "$builddir"
	make DESTDIR="${pkgdir}" install || return 1
}

md5sums="69c94a4400e930f938b754d543705eb9  patchelf-0.9.tar.gz"
sha256sums="cf0693e794229e19edcf2299427b5a352e0f4d4f06f9d3856e30ddb0344d5ce8  patchelf-0.9.tar.gz"
sha512sums="70e615f2f705f413aab5e3eebe20ffe79743bb92381b10a8faa49f16ca24b0f9bd4095c5644f682ec94d75012ffb1b39837933faa9f3c1f1c41bdc5b9d010a30  patchelf-0.9.tar.gz"
-- 
2.9.0



---
Unsubscribe:  alpine-aports+unsubscribe@lists.alpinelinux.org
Help:         alpine-aports+help@lists.alpinelinux.org
---