diff options
author | Yigit Sever | 2021-09-29 17:33:23 +0300 |
---|---|---|
committer | Yigit Sever | 2021-09-29 17:33:23 +0300 |
commit | ab5a1b4615b6a2d13e88528e3205e8c3bb735d52 (patch) | |
tree | 79769b0c7f6f520fb4860f14839ec04a2dfd7829 | |
parent | 6424b7bca9e136cb4480c2be71cd22fbcb0ac43e (diff) | |
download | packages-ab5a1b4615b6a2d13e88528e3205e8c3bb735d52.tar.gz packages-ab5a1b4615b6a2d13e88528e3205e8c3bb735d52.tar.bz2 packages-ab5a1b4615b6a2d13e88528e3205e8c3bb735d52.zip |
Add plugin dependencies
-rw-r--r-- | .SRCINFO | 12 | ||||
-rw-r--r-- | PKGBUILD | 12 |
2 files changed, 20 insertions, 4 deletions
@@ -1,5 +1,5 @@ | |||
1 | pkgbase = gourmand | 1 | pkgbase = gourmand |
2 | pkgdesc = A recipe manager for desktop with the possibilities to import, organize, and tweak recipes | 2 | pkgdesc = A recipe manager for desktop that can import recipes |
3 | pkgver = 1.0.0 | 3 | pkgver = 1.0.0 |
4 | pkgrel = 1 | 4 | pkgrel = 1 |
5 | url = https://github.com/GourmandRecipeManager/gourmand | 5 | url = https://github.com/GourmandRecipeManager/gourmand |
@@ -12,8 +12,16 @@ pkgbase = gourmand | |||
12 | depends = gst-python | 12 | depends = gst-python |
13 | depends = python-pillow | 13 | depends = python-pillow |
14 | depends = python-sqlalchemy | 14 | depends = python-sqlalchemy |
15 | depends = python-lxml | ||
16 | depends = python-cairo | ||
17 | depends = python-requests | ||
15 | optdepends = python-beautifulsoup4: Webpage import plugin | 18 | optdepends = python-beautifulsoup4: Webpage import plugin |
16 | provides = gourmand | 19 | optdepends = python-scrape-schema-recipe: Webpage import plugin |
20 | optdepends = python-selenium | ||
21 | optdepends = python-keyring | ||
22 | optdepends = python-ebooklib: EPub export plugin | ||
23 | optdepends = python-reportlab: Printing & PDF export plugin | ||
24 | optdepends = python-gtkspellcheck: Spell checking plugin | ||
17 | conflicts = gourmet | 25 | conflicts = gourmet |
18 | source = gourmand-1.0.0-py3-none-any.whl::https://github.com/GourmandRecipeManager/gourmand/releases/download/1.0.0/gourmand-1.0.0-py3-none-any.whl | 26 | source = gourmand-1.0.0-py3-none-any.whl::https://github.com/GourmandRecipeManager/gourmand/releases/download/1.0.0/gourmand-1.0.0-py3-none-any.whl |
19 | sha256sums = 9f1acf7098e62a8bca932ba43a9f1ee6b94978073824b96c5c1032fce23b12d4 | 27 | sha256sums = 9f1acf7098e62a8bca932ba43a9f1ee6b94978073824b96c5c1032fce23b12d4 |
@@ -7,10 +7,18 @@ pkgdesc="A recipe manager for desktop that can import recipes" | |||
7 | arch=('any') | 7 | arch=('any') |
8 | url="https://github.com/GourmandRecipeManager/gourmand" | 8 | url="https://github.com/GourmandRecipeManager/gourmand" |
9 | license=('GPL') | 9 | license=('GPL') |
10 | depends=('python-gobject' 'gtk3' 'python-pyenchant' 'gst-python' 'python-pillow' 'python-sqlalchemy') | 10 | depends=('python-gobject' 'gtk3' 'python-pyenchant' 'gst-python' 'python-pillow' 'python-sqlalchemy' 'python-lxml' 'python-cairo' 'python-requests') |
11 | makedepends=('python-pip') | 11 | makedepends=('python-pip') |
12 | checkdepends=() | 12 | checkdepends=() |
13 | optdepends=('python-beautifulsoup4: Webpage import plugin') | 13 | optdepends=( |
14 | 'python-beautifulsoup4: Webpage import plugin' | ||
15 | 'python-scrape-schema-recipe: Webpage import plugin' | ||
16 | 'python-selenium' | ||
17 | 'python-keyring' | ||
18 | 'python-ebooklib: EPub export plugin' | ||
19 | 'python-reportlab: Printing & PDF export plugin' | ||
20 | 'python-gtkspellcheck: Spell checking plugin' | ||
21 | ) | ||
14 | conflicts=('gourmet') | 22 | conflicts=('gourmet') |
15 | source=("$pkgname-$pkgver-py3-none-any.whl::$url/releases/download/$pkgver/$pkgname-$pkgver-py3-none-any.whl") | 23 | source=("$pkgname-$pkgver-py3-none-any.whl::$url/releases/download/$pkgver/$pkgname-$pkgver-py3-none-any.whl") |
16 | sha256sums=('9f1acf7098e62a8bca932ba43a9f1ee6b94978073824b96c5c1032fce23b12d4') | 24 | sha256sums=('9f1acf7098e62a8bca932ba43a9f1ee6b94978073824b96c5c1032fce23b12d4') |