diff --git a/ports/arch/PKGBUILD b/ports/arch/PKGBUILD new file mode 100644 index 0000000..baf1e33 --- /dev/null +++ b/ports/arch/PKGBUILD @@ -0,0 +1,26 @@ +# Maintainer: Jeena Paradies + +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" +}