Received: from out2.migadu.com (out2.migadu.com [188.165.223.204]) by nld3-dev1.alpinelinux.org (Postfix) with ESMTPS id D11DC782CCC for <~alpine/aports@lists.alpinelinux.org>; Fri, 20 Aug 2021 08:55:42 +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=1629449740; 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=qocZcDvTFSa307KmYLks1zoL2QIcw8rtIf8toh7RAdQ=; b=rX5cLr9NfFLeMYwd50suCOAkAjsW98k6spmq6cQcdOMNZeRIQlQfOne2gKgakKEXaKghaf KFwDQvY0kaF3dkM6NsLuiWpbJQpnvoN27VS7OP5AbwOYW2do2TA7IQTpG01PhJWzIBghRC z8pXsNO9H4oMgHlIrSt4ZbIZ3QJIRgMU+YOwxPUvJjvIXTSzj3CkZ+fOyZH4GFmMBTYDFs Pf+5vkewv4y19OgZy+TeVgXUjtNyh43xSJOymAHA557yWxK9YJI8zS1r0VzT4ZgoLjsSYB ZrvqOtLboWN8rouv1sf73jnBxazjusJzXQAIN7LhFZvm6kL567i5U6pQScyrJQ== From: Sol Fisher Romanoff To: ~alpine/aports@lists.alpinelinux.org Cc: Sol Fisher Romanoff Subject: [PATCH v2] testing/libsbsms: new aport Date: Fri, 20 Aug 2021 11:54:57 +0300 Message-Id: <20210820085457.7018-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 | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 testing/libsbsms/APKBUILD diff --git a/testing/libsbsms/APKBUILD b/testing/libsbsms/APKBUILD new file mode 100644 index 0000000000..c9e7c014bd --- /dev/null +++ b/testing/libsbsms/APKBUILD @@ -0,0 +1,34 @@ +# 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" +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