desktop/qownnotes/PKGBUILD
2018-10-20 05:58:33 +02:00

24 lines
596 B
Bash

pkgname=qownnotes
pkgver=18.10.3
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=('ddb4b8d55cdfd82c7ee02ec3f4f3d73d6a2641fd51f1f284d523f014fb223a53')
build() {
cd $pkgname-$pkgver
qmake-qt5
make
}
package() {
cd $pkgname-$pkgver
make INSTALL_ROOT=$pkgdir install
}