mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 10:32:13 +08:00
24 lines
619 B
Bash
24 lines
619 B
Bash
pkgname=qownnotes
|
|
pkgver=17.04.0
|
|
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=('aa9ce9851f80dc64a25b0746fdedacfc5f2f822816337cef96489eefeedef3ba')
|
|
|
|
build() {
|
|
cd "${pkgname}-${pkgver}"
|
|
qmake-qt5
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${pkgname}-${pkgver}"
|
|
|
|
make INSTALL_ROOT="${pkgdir}/" install
|
|
}
|