Received: from out1.migadu.com (out1.migadu.com [91.121.223.63]) by nld3-dev1.alpinelinux.org (Postfix) with ESMTPS id 00B77781AEB for <~alpine/aports@lists.alpinelinux.org>; Sat, 4 Sep 2021 12:29:21 +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=1630758559; 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=H7MD04YkrTEgqFbApy+7YYT9sOvsti71pHzUsDlTbsQ=; b=qY4WIvcC2c4Vx1Tx6a8pD3ECIoy69ia1BbuabbxYsMxICongwpGJvh/rI/zCgiOwBlnSZF vdfN0Ej8j7N9QI5XmuJbXuhvfCPhn6siePuEssu0h/VDQUbiKIRk8JGKfUHVdWpp3eUZVI m9zjmNa/UQzhCQy/sqjfSX0CwdICPA1hbn/RhPeRevd9UmNfjjR77OHj7cDTT5s0u/pEfl vnSbcNMVUnmVfxU8ARHuQo/Ha4E/K2Asopn+eyl46FjCej2zkY6uBfgENilhQbqHyPmRhS 4iaGLADCykHah+qT2m+YB3dFhm5o2ouinNiMYbotXLJ5sn2T6lRaU2WNvVNiSA== From: Sol Fisher Romanoff To: ~alpine/aports@lists.alpinelinux.org Cc: Sol Fisher Romanoff Subject: [PATCH v3] testing/libsbsms: new aport Date: Sat, 4 Sep 2021 15:28:27 +0300 Message-Id: <20210904122827.16059-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 | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 testing/libsbsms/APKBUILD diff --git a/testing/libsbsms/APKBUILD b/testing/libsbsms/APKBUILD new file mode 100644 index 0000000000..535244a980 --- /dev/null +++ b/testing/libsbsms/APKBUILD @@ -0,0 +1,35 @@ +# 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 \ + --enable-shared + make +} + +check() { + make check +} + +package() { + make DESTDIR="$pkgdir" install +} + +sha512sums=" +e5b544c2bdbaa2169236987c7a043838c8d1761b25280c476d7a32656d482c6485cb33f579ea9d1ce586ec7b2913ed8fdcf1abe5c7cc8b9e4eef9ce87de54627 libsbsms-2.3.0.tar.gz +" -- 2.33.0