Received: from out2.migadu.com (out2.migadu.com [188.165.223.204]) by nld3-dev1.alpinelinux.org (Postfix) with ESMTPS id 38180781051 for <~alpine/aports@lists.alpinelinux.org>; Mon, 20 Sep 2021 09:31:51 +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=1632130310; 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=/G1b02kvGSOQuFS5Gg0iiHHIHu29nJoAYsrVtgY/6cw=; b=I0KtfnC2aIBkbL7+bDYvce+ngskMLdWogCKQ//duylun47h23MqBDSyWMm+f+pIlqFwQN6 /BCnlzN3TTD8tpqbTNZTrcyZ3A/tDAkSYXQclIhJRPqrben9Fk1E/HP7Y7KbsBO79Fn/gY Y/FOprEcMBiSztKkDE0aTV2bt9wbaAE9SCv8WerbW3AjUTk6e1aFe3inajKucPCZvTIXBm qVGWenXGeGVRaozlHDv5Z9mfHi/js/Dvlwz8Vm30Nfnc9Xp2mAv/t4aHfp7pYhamQDnmGJ M1Xny894PKWBgUtxlguxKV/MxC8qL+4vmAbiu5j5fa7/HXOOhNg78Z9Hjx0zfg== From: Sol Fisher Romanoff To: ~alpine/aports@lists.alpinelinux.org Cc: Sol Fisher Romanoff Subject: [PATCH v2] testing/twolame: new aport Date: Mon, 20 Sep 2021 12:31:42 +0300 Message-Id: <20210920093142.5411-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..f1e2b9e102 --- /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=" +9a0d3ef430ca93b561caa7e56fe60c126135b1c36294a280fa21699402b3922a3992035f3d421f3bbe131cdc04459cc907059dfe0c2f512427f305fe3936e54d twolame-0.4.0.tar.gz +" -- 2.33.0