Received: from knopi.disroot.org (knopi.disroot.org [178.21.23.139]) by nld3-dev1.alpinelinux.org (Postfix) with ESMTPS id A749678108B for ; Sun, 9 Jan 2022 11:58:44 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by disroot.org (Postfix) with ESMTP id 223FA7E3C6; Sun, 9 Jan 2022 12:58:44 +0100 (CET) X-Virus-Scanned: SPAM Filter at disroot.org Received: from knopi.disroot.org ([127.0.0.1]) by localhost (disroot.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id TdbraCGqLsAS; Sun, 9 Jan 2022 12:58:42 +0100 (CET) From: Dmitry Zakharchenko DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=disroot.org; s=mail; t=1641729522; bh=Xv9cly9kmnHsRggnDT51tke0wVIQ36AuJ0/5tBsFRwU=; h=From:To:Cc:Subject:Date; b=hjPPeF5KhDPbiC3cuppsQwRVqaOdwSjM+sF+eUr3t75SKsNmhtyKO8V9jQs5PXcE/ ZEm3KTzfnTi6AZ8xjnCXBsEc5iNN2An9eKUdh43vWMXbG/o7fmvzQmEOv7XMqqiHzM KdqokS2q83EpDSzoW3CMUta3Wq4O/kIQlWgoUCpxt/TL9MK8Da9XqgqsFnHSsWt5uq SpyK6kEnGqSPdjI10lqbmfPHIJaCTFVw5Tz9RiVlb7c3HAuOPrEaY4ewutwO2d1mqe YKS8VQ8KkTYlKkCAqA1HzBUX7Sw5iikCzSxciurjx2FE3i9iQLnshbhu7941K0yoU7 LLDKBc0ouPt1g== To: alpine-aports@lists.alpinelinux.org Cc: Dmitry Zakharchenko Subject: [PATCH v2] testing/nsxiv: new aport Date: Sun, 9 Jan 2022 13:58:38 +0200 Message-Id: <20220109115838.9698-1-dmitz@disroot.org> Mime-Version: 1.0 Content-Transfer-Encoding: 8bit https://nsxiv.github.io/nsxiv/ Neo Simple X Image Viewer Signed-off-by: Dmitry Zakharchenko --- testing/nsxiv/APKBUILD | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 testing/nsxiv/APKBUILD diff --git a/testing/nsxiv/APKBUILD b/testing/nsxiv/APKBUILD new file mode 100644 index 0000000000..ed3f9d3a72 --- /dev/null +++ b/testing/nsxiv/APKBUILD @@ -0,0 +1,37 @@ +# Contributor: Dmitry Zakharchenko +# Maintainer: Dmitry Zakharchenko +pkgname=nsxiv +pkgver=28 +pkgrel=0 +pkgdesc="Neo Simple X Image Viewer" +url="https://nsxiv.github.io/nsxiv/" +arch="all" +license="GPL-2.0-or-later" +options="!check" # no test suite +makedepends=" + libx11-dev + imlib2-dev + giflib-dev + libexif-dev + libxft-dev + libwebp-dev + " +subpackages="$pkgname-doc" +source="$pkgname-$pkgver.tar.gz::https://github.com/nsxiv/nsxiv/archive/v$pkgver.tar.gz" + +prepare() { + default_prepare + ln -s config.def.h config.h +} + +build() { + make +} + +package() { + make PREFIX=/usr DESTDIR="$pkgdir" install-all +} + +sha512sums=" +a1d61dc57f41e5b50225dd1e8120b8f1e31b042d43f7443ec27d2fc227e8eb98e96116357e8329011b7ca9aac10e7f0f2259bad3b57fbb1b2951a8fe4d8930bf nsxiv-28.tar.gz +" -- 2.34.1