FeedTheMonkey/ports/arch/PKGBUILD
2015-03-07 17:45:57 +01:00

25 lines
609 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')
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/${pkgname}/LICENSE"
}