FeedTheMonkey/ports/arch/PKGBUILD
2015-03-07 10:37:56 +01:00

26 lines
630 B
Bash

# Maintainer: Jeena Paradies <spam@jeenaparadies.net>
pkgname=feedthemonkey
_name=FeedTheMonkey
pkgver=2.0.0
pkgrel=1
pkgdesc="Desktop client for the TinyTinyRSS reader"
arch=('i686' 'x86_64')
url="http://jabs.nu/feedthemonkey"
license=('BSD')
depends=('qt5-declarative' 'qt5-quick1' 'qt5-quickcontrols' 'qt5-webkit')
provides=('feedthemonkey')
source=("https://github.com/jeena/${_name}/archive/v${pkgver}.tar.gz")
md5sums=('SKIP')
build() {
cd "$_name-$pkgver"
qmake-qt5 PREFIX=${pkgdir}/usr
make
}
package() {
cd "$_name-$pkgver"
make install
install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${_name}/LICENSE"
}