desktop/qownnotes/PKGBUILD
2016-12-13 05:19:09 +00:00

24 lines
593 B
Bash

pkgname=qownnotes
pkgver=16.12.6
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")
sha1sums=('ff1cb4180f397b15ebd72c7e33c6e8ba8ed2ff19')
build() {
cd "${pkgname}-${pkgver}"
qmake-qt5
make
}
package() {
cd "${pkgname}-${pkgver}"
make INSTALL_ROOT="${pkgdir}/" install
}