Received: from malvo.org (malvo.org [152.89.107.66]) by nld3-dev1.alpinelinux.org (Postfix) with ESMTPS id 6B17578129D for ; Fri, 18 Feb 2022 16:37:53 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; s=dkim; bh=1OEoWOS6XlqttIN d3Uexebst2AnA2H0JoY+qK5FPA3E=; h=date:subject:cc:to:from; d=malvo.org; b=dqOkjzCFbaAUjWN3JQ6I4SWvrtpx/9bjfQthRRWijz5SjdUVaDG+wI6tHCc6iQReHpib R02T8+N7qZ2JmatFhviMiZj9D6tZUOS1nYU61BHxtuZezmuYaP7EP24hvcx0WoIK9MvxNM mRqxx3+bLXUDFBhnh9i+m5URwX+UGSJWM= Received: from malvo.org (malvo.org [::1]) by malvo.org (OpenSMTPD) with ESMTPSA id 33998db0 (TLSv1.3:TLS_AES_256_GCM_SHA384:256:NO); Fri, 18 Feb 2022 17:37:52 +0100 (CET) From: Malte Voos To: alpine-aports@lists.alpinelinux.org Cc: Malte Voos Subject: [PATCH v2 1/2] testing/libopensmtpd: new aport Date: Fri, 18 Feb 2022 17:37:41 +0100 Message-Id: <20220218163742.4701-1-malte@malvo.org> X-Mailer: git-send-email 2.35.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit --- testing/libopensmtpd/APKBUILD | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 testing/libopensmtpd/APKBUILD diff --git a/testing/libopensmtpd/APKBUILD b/testing/libopensmtpd/APKBUILD new file mode 100644 index 0000000000..99e4ea0a44 --- /dev/null +++ b/testing/libopensmtpd/APKBUILD @@ -0,0 +1,25 @@ +# Contributor: Malte Voos +# Maintainer: Malte Voos +pkgname=libopensmtpd +pkgver=0.7 +pkgrel=0 +pkgdesc="Library for creating OpenSMTPD filters" +url="http://imperialat.at/dev/libopensmtpd/" +arch="all" +license="ISC" +makedepends="libevent-dev mandoc" +options="!check" # no test suite +subpackages="$pkgname-dev $pkgname-doc" +source="http://imperialat.at/releases/$pkgname-$pkgver.tar.gz" + +build() { + make -f Makefile.gnu +} + +package() { + make -f Makefile.gnu DESTDIR="$pkgdir" install +} + +sha512sums=" +53153eea5ed85309434316fa9bbba032aba9cac30744a6c228892b5fdf67f9df7e05c25832f16845c603892a255dfcf67d432e2a43ec6228f3103cf92ba2394f libopensmtpd-0.7.tar.gz +" -- 2.35.1