X-Original-To: alpine-aports@lists.alpinelinux.org Received: from mx1.riseup.net (mx1.riseup.net [198.252.153.129]) by lists.alpinelinux.org (Postfix) with ESMTP id 9B35D5C4FE3 for ; Wed, 22 Feb 2017 17:16:46 +0000 (GMT) Received: from cotinga.riseup.net (unknown [10.0.1.164]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (Client CN "*.riseup.net", Issuer "COMODO RSA Domain Validation Secure Server CA" (verified OK)) by mx1.riseup.net (Postfix) with ESMTPS id 50D5D1A2568 for ; Wed, 22 Feb 2017 17:16:46 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=riseup.net; s=squak; t=1487783806; bh=yTZLYqRd0DiQGzrUNlcRo1b0NBbIlVMc58h7i9s7hGw=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=hR+ojfAhh2nBjyNlOeGj2VG6p9rwdU/dMAdb6HGWnzlCxPjb+F6BLGgJq6yjX8A8e DmmicdtM661NHyITw/MtvcF6Cgbl3vqP9qk7A5PCk4UCHx2B2mcc75qf2rTUOfprhv QjSuw5AUdJH04UfnkUy/YWzX2phUrjqjRc8WHsEQ= Received: from [127.0.0.1] (localhost [127.0.0.1]) (Authenticated sender: pickfire) with ESMTPSA id 19FFE412C3 From: Ivan Tham To: alpine-aports@lists.alpinelinux.org Cc: Ivan Tham Subject: [alpine-aports] [PATCH 2/2] testing/you-get: new aport Date: Thu, 23 Feb 2017 01:16:38 +0800 Message-Id: <20170222171638.7998-2-pickfire@riseup.net> In-Reply-To: <20170222171638.7998-1-pickfire@riseup.net> References: <20170222171638.7998-1-pickfire@riseup.net> X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: https://you-get.org/ Tiny command line utility to download media contents --- testing/you-get/APKBUILD | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 testing/you-get/APKBUILD diff --git a/testing/you-get/APKBUILD b/testing/you-get/APKBUILD new file mode 100644 index 0000000000..7982c81d3f --- /dev/null +++ b/testing/you-get/APKBUILD @@ -0,0 +1,26 @@ +# Contributor: Ivan Tham +# Maintainer: Ivan Tham +pkgname=you-get +pkgver=0.4.652 +pkgrel=0 +pkgdesc="Tiny command line utility to download media contents" +url="https://you-get.org/" +arch="noarch" +license="MIT" +depends="python3" +makedepends="python3-dev" +subpackages="" +source="https://files.pythonhosted.org/packages/source/${pkgname:0:1}/$pkgname/$pkgname-$pkgver.tar.gz" +builddir="$srcdir/"$pkgname-$pkgver + +build() { + cd "$builddir" + python3 setup.py build || return 1 +} + +package() { + cd "$builddir" + python3 setup.py install --prefix=/usr --root="$pkgdir" || return 1 +} + +sha512sums="b3c736915492d9d921ec6866edb35acb12b5fb283663db8ad3d87325d06354697196ffdffef13291a709bd8bf5b5db6a61ee6288c083f0939d6ac8637b014ab4 you-get-0.4.652.tar.gz" -- 2.11.1 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---