Received: from knopi.disroot.org (knopi.disroot.org [178.21.23.139]) by nld3-dev1.alpinelinux.org (Postfix) with ESMTPS id D0B7F78100C for ; Mon, 10 Jan 2022 11:08:06 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by disroot.org (Postfix) with ESMTP id 30889533D6; Mon, 10 Jan 2022 12:08:04 +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 UTF8SMTP id UDa8S_UVMftp; Mon, 10 Jan 2022 12:08:02 +0100 (CET) From: Dmitry Zakharchenko DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=disroot.org; s=mail; t=1641812882; bh=M8hp2e3bxpwjpn0wRveExvCxHTnKEb97LnMu8yn/aEU=; h=From:To:Cc:Subject:Date; b=ieaica3bs76eDM2BtZ/TXhr+7boze30amq9gsKgg2wJAOsTmCp8V+W1pjcEtJO5um IdCMlmS8ETrIoQJsETInDwp/E8ihO+eXYDENgEYbER5fAfO0uE33kou9mChjgmUmn/ P1894V/JfVtaPSJH+k4y9ReFG1U3kmiz+MbKx1BpZXCF3Tn6fQpvTrFmOHI50WhJLZ aWT46mirhXWJztLbtU+WVxhrIknD3Yz6Ww6mHmCpxXyEYSfU5a07RlBJHuCq+LbPO5 fwgVQz8uBTNCEjbhTBTiOORIT9hponVREUx1l9QlhYmO5vUCa4eKRZL9Gu/rYEtctN Aki7Aa0e9bQ6A== To: alpine-aports@lists.alpinelinux.org Cc: Dmitry Zakharchenko Subject: [PATCH v3] testing/nsxiv: new aport Date: Mon, 10 Jan 2022 13:07:46 +0200 Message-Id: <20220110110746.2755-1-dmitz@disroot.org> Mime-Version: 1.0 Content-Transfer-Encoding: 8bit https://nsxiv.github.io/nsxiv/ Neo Simple X Image Viewer --- 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..4744372f0d --- /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=" + giflib-dev + imlib2-dev + libexif-dev + libwebp-dev + libx11-dev + libxft-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