Received: from out2.migadu.com (out2.migadu.com [188.165.223.204]) by nld3-dev1.alpinelinux.org (Postfix) with ESMTPS id 4AD58782C90 for <~alpine/aports@lists.alpinelinux.org>; Thu, 19 Aug 2021 10:23:34 +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=1629368611; 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=tDDJlR0QGgszu7KlYbp6lrf57ZIqmoP3PNOnxYkkYFE=; b=s7A3UU1g+xp+EW7xxcmQve1EMvYT0EU3wgZbGT72Lswii14OE4OON7DCjIYsUu18vKBpdr E8jeFhOEgj6BeMnXojPUcdW20Irj+EHN46dVcHIwq8FAsOW+DN1kq5KwF9Gx+RgdWx7Bih Idpmcl8qhyc8AvsdAv/OMQ//rSJN5EwR7SR7L6wyMo14Gp2bYNS9hR248mQLLm9Tr8uUQa LYgP5EiXhSHQgldsHli4fRRFxAUf2vL0NBP9N7GjJCQbjSk+5mH0KgM2jc4uIZtEkJuLKd myZqIMFAIsgETeZTymVRBN1uBs2nB7XuvsyGmfKIUOxdMGdoe/sYeDwhamMQqQ== From: Sol Fisher Romanoff To: ~alpine/aports@lists.alpinelinux.org Cc: Sol Fisher Romanoff Subject: [PATCH] testing/libsbsms: new aport Date: Thu, 19 Aug 2021 13:22:48 +0300 Message-Id: <20210819102248.12973-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/claytonotey/libsbsms Library for time stretching and pitch scaling of audio --- testing/libsbsms/APKBUILD | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 testing/libsbsms/APKBUILD diff --git a/testing/libsbsms/APKBUILD b/testing/libsbsms/APKBUILD new file mode 100644 index 0000000000..42873f948a --- /dev/null +++ b/testing/libsbsms/APKBUILD @@ -0,0 +1,38 @@ +# Contributor: Sol Fisher Romanoff +# Maintainer: Sol Fisher Romanoff +pkgname=libsbsms +pkgver=2.3.0 +pkgrel=0 +pkgdesc="Library for time stretching and pitch scaling of audio" +url="https://github.com/claytonotey/libsbsms" +arch="all" +license="GPL-2.0-or-later" +depends="" +makedepends="" +checkdepends="" +install= +subpackages="$pkgname-dev" +source="$pkgname-$pkgver.tar.gz::https://github.com/claytonotey/libsbsms/archive/refs/tags/$pkgver.tar.gz" + +build() { + ./configure \ + --build=$CBUILD \ + --host=$CHOST \ + --prefix=/usr \ + --sysconfdir=/etc \ + --mandir=/usr/share/man \ + --infodir=/usr/share/info + make +} + +check() { + make check +} + +package() { + make DESTDIR="$pkgdir" install +} + +sha512sums=" +e5b544c2bdbaa2169236987c7a043838c8d1761b25280c476d7a32656d482c6485cb33f579ea9d1ce586ec7b2913ed8fdcf1abe5c7cc8b9e4eef9ce87de54627 libsbsms-2.3.0.tar.gz +" -- 2.33.0