desktop/qownnotes/PKGBUILD

24 lines
619 B
Bash
Raw Normal View History

2016-11-15 03:58:56 +08:00
pkgname=qownnotes
2017-06-27 14:08:01 +08:00
pkgver=17.06.6
2016-11-15 03:58:56 +08:00
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")
2017-06-27 14:08:01 +08:00
sha256sums=('8e348f38bec96790d30f3e0c1b72958124492d61aec51e8beaabad94116624f8')
2016-11-15 03:58:56 +08:00
build() {
cd "${pkgname}-${pkgver}"
qmake-qt5
make
}
package() {
cd "${pkgname}-${pkgver}"
make INSTALL_ROOT="${pkgdir}/" install
}