blob: 28e4503e0b7e97134bd0e17b3ce0643f50c0a751 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Maintainer: dryes <joswiseman@cock.li>
pkgname='clnns-git'
pkgver=9
pkgrel=1
pkgdesc='searches and downloads from newznab providers on the command line.'
url='https://github.com/dryes/clnns'
arch=('any')
license=('MIT')
depends=('python' 'python-feedparser')
makedepends=('git')
source=('git://github.com/dryes/clnns.git')
md5sums=('SKIP')
pkgver() {
cd "${pkgname%-git}"
echo $(git rev-list --count master)
}
package() {
mkdir -p "${pkgdir}/usr/bin"
install -D -m755 "${srcdir}/clnns/clnns.py" "${pkgdir}/usr/bin/clnns"
}
|