mirror of
https://github.com/archlinux/aur.git
synced 2026-02-07 04:41:00 +01:00
Update to v0.3.0
This commit is contained in:
parent
5647605d59
commit
2c6b00eabe
3 changed files with 17 additions and 7 deletions
9
.SRCINFO
9
.SRCINFO
|
|
@ -1,16 +1,17 @@
|
|||
pkgbase = wiki2book
|
||||
pkgdesc = Wiki2book is a CLI tool to convert one or multiple Wikipedia articles into an eBook.
|
||||
pkgver = 0.2.0
|
||||
pkgver = 0.3.0
|
||||
pkgrel = 1
|
||||
url = https://github.com/hauke96/wiki2book
|
||||
arch = any
|
||||
license = GPL-3.0
|
||||
makedepends = go>=1.21
|
||||
makedepends = go>=1.22
|
||||
depends = imagemagick
|
||||
optdepends = ttf-dejavu: Font used in the default style
|
||||
optdepends = pandoc: Used as one possible way to create EPUB files
|
||||
provides = wiki2book=0.2.0
|
||||
source = git+https://github.com/hauke96/wiki2book#tag=v0.2.0
|
||||
optdepends = librsvg: Tool used to convert SVGs into raster images
|
||||
provides = wiki2book=0.3.0
|
||||
source = git+https://github.com/hauke96/wiki2book#tag=v0.3.0
|
||||
sha256sums = SKIP
|
||||
|
||||
pkgname = wiki2book
|
||||
|
|
|
|||
8
PKGBUILD
8
PKGBUILD
|
|
@ -1,7 +1,7 @@
|
|||
# Maintainer: Hauke Stieler <mail@hauke-stieler.d>
|
||||
|
||||
pkgname=wiki2book
|
||||
pkgver=0.2.0
|
||||
pkgver=0.3.0
|
||||
pkgrel=1
|
||||
pkgdesc="Wiki2book is a CLI tool to convert one or multiple Wikipedia articles into an eBook."
|
||||
arch=("any")
|
||||
|
|
@ -10,12 +10,14 @@ license=("GPL-3.0")
|
|||
depends=("imagemagick")
|
||||
optdepends=(
|
||||
"ttf-dejavu: Font used in the default style"
|
||||
"pandoc: Used as one possible way to create EPUB files")
|
||||
makedepends=("go>=1.21")
|
||||
"pandoc: Used as one possible way to create EPUB files"
|
||||
"librsvg: Tool used to convert SVGs into raster images")
|
||||
makedepends=("go>=1.22")
|
||||
backup=()
|
||||
conflicts=()
|
||||
provides=("wiki2book=${pkgver}")
|
||||
source=("git+https://github.com/hauke96/wiki2book#tag=v${pkgver}")
|
||||
options=(!debug !lto)
|
||||
sha256sums=("SKIP")
|
||||
|
||||
build() {
|
||||
|
|
|
|||
7
README.md
Normal file
7
README.md
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
This is the package for the CLI tool **wiki2book** (https://github.com/hauke96/wiki2book).
|
||||
|
||||
## Commands
|
||||
|
||||
Build locally: `makepkg -f -c -s -r -i`
|
||||
|
||||
Update `.SRCINFO` file: `./update-srcinfo.sh`
|
||||
Loading…
Add table
Reference in a new issue