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