Received: from sebsite.pw (sebsite.pw [71.19.150.50]) by nld3-dev1.alpinelinux.org (Postfix) with ESMTPS id 53C5C780FB5 for <~alpine/aports@lists.alpinelinux.org>; Sun, 19 Dec 2021 03:31:48 +0000 (UTC) Received: from localhost.localdomain (unknown [8.9.88.219]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by sebsite.pw (Postfix) with ESMTPSA id 50057380459; Sun, 19 Dec 2021 03:31:30 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=sebsite.pw; s=sebsite; t=1639884690; bh=lewHRK1dhBjD94osLjKmOGdz/3273UsmxRqxcyDfmag=; h=From:To:Cc:Subject:Date; b=gCxDJFA0KdcXBPNiCbQn3RiF3CjSEUGXtdmtb1rhg3FnHOFQkgVPvZNZJ1IZTlvoy timIlZu7fIAoTIvwrkldGQYicI743o2v8kdu2j3k9mPkDwCjkkWjZHpf93Jm38tTNn SCRdvJP65Bxe/CNRVc8ashmpT3CGWeyPSph2HOyNJcHX8JRMwNey4O9gxzdfCtwWgJ 6fZH2sQGKwtf4h9wKxvp2njE/vSnbo9x/hwJ0fZhjM1rJi4Ek++merddcS+4UsOt9N ttMPdgl65ousHtqKTbeaShGL7zHdtFQc8SiWMjr6HjDPzxmJwFN2yfKzxnVPchYi9P dYU/7ZQtxMhXQ== From: Sebastian To: ~alpine/aports@lists.alpinelinux.org Cc: Sebastian Subject: [PATCH v3] testing/sponskrub: new aport Date: Sat, 18 Dec 2021 16:30:04 -0500 Message-Id: <20211218213004.15031-1-sebastian@sebsite.pw> X-Mailer: git-send-email 2.34.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Signed-off-by: Sebastian --- testing/sponskrub/APKBUILD | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 testing/sponskrub/APKBUILD diff --git a/testing/sponskrub/APKBUILD b/testing/sponskrub/APKBUILD new file mode 100644 index 00000000..78a3f6d3 --- /dev/null +++ b/testing/sponskrub/APKBUILD @@ -0,0 +1,23 @@ +# Contributor: Sebastian Hudak +# Maintainer: Sebastian Hudak +pkgname=sponskrub +pkgver=3.7.2 +pkgrel=0 +pkgdesc="Command-line utility to strip out advertisements from downloaded YouTube videos" +url="https://github.com/faissaloo/SponSkrub" +arch="x86_64" # limited by dub +license="GPL-3.0-or-later" +makedepends="dub ldc" +source="$pkgname-$pkgver.tar.gz::https://github.com/faissaloo/SponSkrub/archive/refs/tags/$pkgver.tar.gz" +builddir="$srcdir/SponSkrub-$pkgver" +options="!check" # No tests + +build() { + dub build sponskrub:sponskrub +} + +package() { + install -Dm755 sponskrub "$pkgdir"/usr/bin/sponskrub +} + +sha512sums="5584dafed292201baeb36a1b5585d56070b4e3db9e5e2f1600dae6bdc21db43c4e7aa65eb1b881099f7211278613856422de2d53671fdda4f3b0aa3c85c8c5b4 sponskrub-3.7.2.tar.gz" -- 2.34.1