X-Original-To: alpine-aports@lists.alpinelinux.org Received: from 7of9.schinagl.nl (7of9.schinagl.nl [62.251.20.244]) by lists.alpinelinux.org (Postfix) with ESMTP id B00BEF831C0 for ; Fri, 22 Feb 2019 15:56:07 +0000 (UTC) Received: from 3of9.wifi.ns.nl (unknown [145.15.244.34]) by 7of9.schinagl.nl (Postfix) with ESMTPA id F0BE8B4948B; Fri, 22 Feb 2019 16:56:06 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=schinagl.nl; s=7of9; t=1550850967; bh=9cXhjsS69EbfNFLRZD5net+DhN+MmOdQdfeTpIo4rKE=; h=From:To:Cc:Subject:Date; b=R/dHoSBx7r7ihdOOpnnCaJUCZk7jPcdbAhYA0Xc2Ip3LV/3qCgP/n2NrCCqmMA1da aDoJLF/B32sJZpeX/oXBJxYA/BpFsW73qo7Fll4v+i1gDFksU8d61xide4EVZ0P++3 TeR8HCsq8JW5jUw2ip2EYFIsGZsQmGzLQtYtDtNM= From: Olliver Schinagl To: alpine-aports@lists.alpinelinux.org Cc: Olliver Schinagl Subject: [alpine-aports] [PATCH 1/2] community/memtester: new aport 4.3.0 Date: Fri, 22 Feb 2019 16:56:01 +0100 Message-Id: <20190222155602.10401-1-oliver@schinagl.nl> X-Mailer: git-send-email 2.20.1 X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Signed-off-by: Olliver Schinagl --- community/memtester/APKBUILD | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 community/memtester/APKBUILD diff --git a/community/memtester/APKBUILD b/community/memtester/APKBUILD new file mode 100644 index 0000000000..97b52abec5 --- /dev/null +++ b/community/memtester/APKBUILD @@ -0,0 +1,34 @@ +# Contributor: Olliver Schinagl +# Maintainer: Olliver Schinagl +pkgname=memtester +pkgver=4.3.0 +pkgrel=0 +pkgdesc="A userspace utility for testing the memory subsystem for faults." +url="http://pyropus.ca/software/memtester/" +arch="all" +license="GPL-2.0-or-later" +depends="" +options="!check" # No checks available +subpackages="${pkgname}-doc" +source="http://pyropus.ca/software/memtester/old-versions/memtester-4.3.0.tar.gz" + +build() +{ + cd "${builddir}" + make +} + +package() +{ + cd "${builddir}" + install -D -m 755 "memtester" "${pkgdir}/usr/bin/memtester" + gzip -c "memtester.8" > "memtester.8.gz" && \ + install -D -m 644 "memtester.8.gz" "${pkgdir}/usr/share/man/man8/memtester.8.gz" + install -D -m 644 "COPYING" "${pkgdir}/usr/share/doc/${pkgname}/copying" + gzip -c "README" > "README.gz" && \ + install -D -m 644 "README.gz" "${pkgdir}/usr/share/doc/${pkgname}/README.gz" + gzip -c "README.tests" > "README.tests.gz" && \ + install -D -m 644 "README.tests.gz" "${pkgdir}/usr/share/doc/${pkgname}/README.tests.gz" +} + +sha512sums="045bcc73855706ff03e8ca65297a0d6e5b5ac02f99dae0f17cef1310b403efcb78d9a7295eca6d2de703b0a7b2f71b58a37f5a42040f01fc77a321a8d2205888 memtester-4.3.0.tar.gz" -- 2.20.1 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---