Received: from out1.migadu.com (out1.migadu.com [91.121.223.63]) by nld3-dev1.alpinelinux.org (Postfix) with ESMTPS id 94B9B780327 for <~alpine/aports@lists.alpinelinux.org>; Mon, 20 Sep 2021 09:25:08 +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=1632129906; 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=yNXAOvgFZ+ZuYmszzif401Vhoox9dCLPQ8UE+nnvz9E=; b=KMPSsCAGfEgzj0BgD+9q+dwZsH/mS5g2eZLz3lqiUQlCFpGieXdJ9BFo/JdS2ZZ5r9n2+9 ReXnAbvzhZBEjl4jHebNVnScb1APf6+oesV6abO8KaPvKzgr65xgX4UvVeoNoWRkVAbvAJ /xqkBnsRIramzfElntVr87AYNMOjYWhXuWHoOEkxt6FJB2nV0JimH2DJeUNJ3a099gI7lM N4c0CcEucgsvPDuXFPZURiphFtz5llsuO3MABRV3RcCR/Vf32OOSlE3JjMGnmnmjAk7yMg UnTKJ9ZtIqvSYwCc+NmaRUCll5NQHweMdw5w4+okC2ylyBZXWeww8TXtOuNH1Q== From: Sol Fisher Romanoff To: ~alpine/aports@lists.alpinelinux.org Cc: Sol Fisher Romanoff Subject: [PATCH] testing/twolame: new aport Date: Mon, 20 Sep 2021 12:24:01 +0300 Message-Id: <20210920092401.20084-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://twolame.org MPEG Audio Layer 2 (MP2) encoder --- testing/twolame/APKBUILD | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 testing/twolame/APKBUILD diff --git a/testing/twolame/APKBUILD b/testing/twolame/APKBUILD new file mode 100644 index 0000000000..69ebb030b0 --- /dev/null +++ b/testing/twolame/APKBUILD @@ -0,0 +1,36 @@ +# Contributor: Sol Fisher Romanoff +# Maintainer: Sol Fisher Romanoff +pkgname=twolame +pkgver=0.4.0 +pkgrel=0 +pkgdesc="MPEG Audio Layer 2 (MP2) encoder" +url="https://twolame.org" +arch="all" +license="LGPL-2.1" +makedepends="autoconf automake libtool libsndfile-dev" +subpackages="$pkgname-dev $pkgname-doc" +source="$pkgname-$pkgver.tar.gz::https://github.com/njh/twolame/archive/refs/tags/$pkgver.tar.gz" + +prepare() { + default_prepare + autoreconf -vfi +} + +build() { + ./configure \ + --prefix=/usr \ + --disable-static + make +} + +check() { + make check +} + +package() { + make DESTDIR="$pkgdir" install +} + +sha512sums=" +cc594bc8d2322922280f915a3c0aa52540cca0350d6498bc96f3f60fd6e53f951e775ea015a44bdb29ec883b46b31a0e5483f6a5c188b02e30008289273c7d03 twolame-0.4.0.tar.gz +" -- 2.33.0