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