forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Closes: gentoo#1094
- Loading branch information
Showing
2 changed files
with
33 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
DIST podget-0.7.10.tar.gz 61812 SHA256 51018176dab74fb931045ac7169713529d23c39bdfa59e589f894a697a0a8391 SHA512 82cbb21dd7288dc4a2df8a851f25f85e4709cd5c385b1a8df2d9369303e62ead8f7225a65a29c6614660a5d3795f422f786c8be5bb5ca709752fca2d65d84e1f WHIRLPOOL 622094442dc12b2031c60de710867216662c28f8da420b6a272eadbed0e2cc9b093299c0187a48280aed83b68edd02de4615f6976d68ee7906bc23457676f0d9 | ||
DIST podget-0.7.12.tar.gz 62150 SHA256 ec2aebbf75b81eaa531077eea03abefdc05b6640b1d47bee92609344d2dedb35 SHA512 feb14172877378f5149862e3995df4c22eca0ab69eff950d399b9a5cf4f4f3f586cf9753204a979c8501c907e734fc96735fa1818cac4a5cd9b172462780e362 WHIRLPOOL 357d1d6d70060c355f7c98adc9980da24a366ee7c5e2ebf56f9d3283d354eba0600be053bcc9c1b9a8435391198c3dd6253c22cfefe790acb8ec7fa5288465e4 | ||
DIST podget-0.7.9.tar.gz 50898 SHA256 dd866f8a740592b0a6b1e859f73e12691e5a05c6f386006ff2a53e88090d853b SHA512 b67ee7619580ff0acfbe070bd2be4f990e035060740ffe98d5efdd24956c5fa239ac53553bc56afe1a3aaa1e70bee82d58982bbaa1059abef876f3223a473fc1 WHIRLPOOL 7ddbecd7c0dd4c71369fd0bda28e8df7f8812fbea05383b3d188eba08dd4c09b13a62af323f1f88e818519aea0d5d6eec4f78b175bdd5e2264bfca423d744617 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# Copyright 1999-2016 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
# $Id$ | ||
|
||
EAPI=6 | ||
|
||
DESCRIPTION="A simple podcast aggregator" | ||
HOMEPAGE="http://podget.sourceforge.net/ https://github.com/dvehrs/podget" | ||
SRC_URI="https://github.com/dvehrs/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" | ||
|
||
LICENSE="GPL-3" | ||
SLOT="0" | ||
KEYWORDS="~amd64 ~arm ~x86" | ||
IUSE="" | ||
|
||
RDEPEND=" | ||
net-misc/wget | ||
virtual/libiconv | ||
" | ||
|
||
DOCS=( README Changelog ) | ||
|
||
src_compile() { | ||
# There is a Makefile that we don't want to use. | ||
:; | ||
} | ||
|
||
src_install() { | ||
dobin ${PN} | ||
doman DOC/${PN}.7 | ||
einstalldocs | ||
} |