desktop/qownnotes/PKGBUILD
2017-05-24 01:32:56 +01:00

24 lines
620 B
Bash

pkgname=qownnotes
pkgver=17.05.10
pkgrel=1
pkgdesc="Open source notepad and todo list manager with markdown support and ownCloud integration"
arch=('x86_64')
url='http://www.qownnotes.org/'
license=('GPL2')
depends=('qt5-base' 'qt5-svg' 'qt5-declarative' 'openssl')
makedepends=('qt5-tools')
source=("http://downloads.sourceforge.net/project/${pkgname}/src/${pkgname}-${pkgver}.tar.xz")
sha256sums=('f485303a1fd80ecda2726828e296e470ff91a9854e3490ac6b300da856a24f6d')
build() {
cd "${pkgname}-${pkgver}"
qmake-qt5
make
}
package() {
cd "${pkgname}-${pkgver}"
make INSTALL_ROOT="${pkgdir}/" install
}