added arch PKGBUILD file

This commit is contained in:
Jeena 2015-03-07 10:06:01 +01:00
parent 8379ed09a5
commit 5db62a607d

26
ports/arch/PKGBUILD Normal file
View file

@ -0,0 +1,26 @@
# 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"
}