diff options
author | mrxx | 2018-12-08 19:00:21 +0100 |
---|---|---|
committer | mrxx | 2018-12-08 19:00:21 +0100 |
commit | 2cf080ec0af9906acd6b65f07eb2091e73034741 (patch) | |
tree | e6593d6f75d561bcd7fafa79776b4c6c0856399f /PKGBUILD | |
parent | e10b104cf13868bc1bd770707255fa28fc7a68c7 (diff) | |
download | aur-mynotex.tar.gz |
Add gnupg to optdepends
Diffstat (limited to 'PKGBUILD')
-rw-r--r-- | PKGBUILD | 14 |
1 files changed, 7 insertions, 7 deletions
@@ -1,24 +1,24 @@ +# Maintainer: mrxx <mrxx at cyberhome dot at> # Contributor: saxonbeta <saxonbeta at gmail> # Contributor: goten002 <goten002@gmail.com> # Contributor: epinull pkgname=mynotex pkgver=1.4.1.0 -pkgrel=1 -pkgdesc="free note-taking and notes manager software for Linux" -url="http://sites.google.com/site/mynotex" +pkgrel=2 +pkgdesc="A free note-taking, document file and activity manager for GNU/Linux" +url="https://sites.google.com/site/mynotex" license=('GPL') arch=('i686' 'x86_64') depends=('sqlite3' 'gtk2') +optdepends=('gnupg: for notes encryption') source_i686=("https://sites.google.com/site/${pkgname}/files/${pkgname}_${pkgver}_i386.deb") source_x86_64=("https://sites.google.com/site/${pkgname}/files/${pkgname}_${pkgver}_amd64.deb") -md5sums_i686=('5ccdee9c57ef13a9e4902b97e86bc833') -md5sums_x86_64=('657979d34ffe42af2da902894825e2cf') - +sha256sums_i686=('7a2b049d166609bec364e34ddf9899ff218c2fea410014f0af78472ee0fb4b90') +sha256sums_x86_64=('0026f7182fd0f9c38b6c220a3ea82642d93241f78ba33360f0d66270bf9f8673') package() { tar -axf data.tar.xz -C "$pkgdir" mkdir -p "${pkgdir}/usr/bin/" ln -s "/opt/mynotex/mynotex" "${pkgdir}/usr/bin/mynotex" } - |