Received: from out1.migadu.com (out1.migadu.com [91.121.223.63]) by nld3-dev1.alpinelinux.org (Postfix) with ESMTPS id 1EC4C781505 for <~alpine/aports@lists.alpinelinux.org>; Sun, 5 Sep 2021 12:49:04 +0000 (UTC) X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=solfisher.com; s=key1; t=1630846143; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=H6K1Ba3Pwdc9JX5gXFrXg7UBLaqO3rgUkOvWLaD954U=; b=SkMCu9JzJq3IKAJRWCtYxJDNBCWOXqW12GdHzyPAwqPchiy7/M87GSlTtmYvtl8I391vCB uVmX7/Zz0gqghNjnD5JUNHb3x5P6dxTEMFAVDumbIW5dCjbvPMBNfqk1MtEN4bY6jOSJT9 1BH48HU7BKJl4NHs4+qE+GiO+gwtePo3tbRtjstdFfNodZ1ePRJXqmmiZbBEbPsIWn5S9N bH0T1SPyMBuomdmCR5U9RyCbeSJLgqNjpvcA3rzkLapJP8Jrf17+pY8xOoCs8gzsPUm4yu BPRy5lr8ASdod9T8C3xcQxKzICpUxWR40fE+gBixC94SzXb/HOs5ZX+j0ydjQg== From: Sol Fisher Romanoff To: ~alpine/aports@lists.alpinelinux.org Cc: Sol Fisher Romanoff Subject: [PATCH] testing/portsmf: new aport Date: Sun, 5 Sep 2021 15:48:58 +0300 Message-Id: <20210905124858.13730-1-sol@solfisher.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Migadu-Flow: FLOW_OUT X-Migadu-Auth-User: sol@solfisher.com https://github.com/tenacityteam/portsmf C++ library for reading and writing Standard MIDI Files --- testing/portsmf/APKBUILD | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 testing/portsmf/APKBUILD diff --git a/testing/portsmf/APKBUILD b/testing/portsmf/APKBUILD new file mode 100644 index 0000000000..2e78994510 --- /dev/null +++ b/testing/portsmf/APKBUILD @@ -0,0 +1,29 @@ +# Contributor: Sol Fisher Romanoff +# Maintainer: Sol Fisher Romanoff +pkgname=portsmf +pkgver=239 +pkgrel=0 +pkgdesc="C++ library for reading and writing Standard MIDI Files" +url="https://github.com/tenacityteam/portsmf" +arch="all" +license="MIT" +makedepends="cmake" +subpackages="$pkgname-dev" +options="!check" # No testsuite +source="$pkgname-$pkgver.tar.gz::https://github.com/tenacityteam/portsmf/archive/refs/tags/$pkgver.tar.gz" + +build() { + cmake \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -DCMAKE_INSTALL_LIBDIR=lib \ + -S . -B build + cmake --build build +} + +package() { + DESTDIR="$pkgdir" cmake --install build +} + +sha512sums=" +5908ef79043b44f90da8286d639a0693334f160454d206f4a212fe958a7a2e19cbc18e4240e191c1678690f34976c5e0d34dcb030d7bab007ee528fbb5e19486 portsmf-239.tar.gz +" -- 2.33.0