Received: from malvo.org (malvo.org [152.89.107.66]) by nld3-dev1.alpinelinux.org (Postfix) with ESMTPS id 7E01F781227 for ; Fri, 18 Feb 2022 15:27:30 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; s=dkim; bh=IJyf4+sepZGt6bb E6qtJtYxXHIZoMCnZL3vNHMyurBg=; h=date:subject:cc:to:from; d=malvo.org; b=h6wl0jbl8faek026oJxw1Bqd3S03dpBFVwHvCcZj473L/PRSjdMbwPmd4H4EnO7hsOPe Foepk17lshNsemKLYNT8fjN46fLQIVxFJsVccdKEnPGk2rXeJtguPpIOKYYHEvV+zIYW5p 5qKXOJcKT74C60V/7jKtTsjTbFkzMbGBY= Received: from malvo.org (malvo.org [::1]) by malvo.org (OpenSMTPD) with ESMTPSA id 7e3a0146 (TLSv1.3:TLS_AES_256_GCM_SHA384:256:NO); Fri, 18 Feb 2022 16:20:48 +0100 (CET) From: Malte Voos To: alpine-aports@lists.alpinelinux.org Cc: Malte Voos Subject: [PATCH 1/2] testing/libopensmtpd: new aport Date: Fri, 18 Feb 2022 16:20:20 +0100 Message-Id: <20220218152021.3080-1-malte@malvo.org> X-Mailer: git-send-email 2.35.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit --- testing/libopensmtpd/APKBUILD | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 testing/libopensmtpd/APKBUILD diff --git a/testing/libopensmtpd/APKBUILD b/testing/libopensmtpd/APKBUILD new file mode 100644 index 0000000000..618478993b --- /dev/null +++ b/testing/libopensmtpd/APKBUILD @@ -0,0 +1,28 @@ +# 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" +depends="libevent" +makedepends="libevent-dev gzip mandoc" +options="!check" # no test suite +install="" +subpackages="$pkgname-dev $pkgname-doc" +source="http://imperialat.at/releases/$pkgname-$pkgver.tar.gz" +builddir="$srcdir/$pkgname-$pkgver" + +build() { + make -f Makefile.gnu +} + +package() { + make -f Makefile.gnu DESTDIR="$pkgdir" install +} + +sha512sums=" +53153eea5ed85309434316fa9bbba032aba9cac30744a6c228892b5fdf67f9df7e05c25832f16845c603892a255dfcf67d432e2a43ec6228f3103cf92ba2394f libopensmtpd-0.7.tar.gz +" -- 2.35.1