blob: bb9b026252fb6bfe7829d16eb0aabdbee2979811 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# Maintainer: Castor <whoisyoges at castorisdead dot xyz>
pkgname=local-arch-wiki
pkgver=1.1
pkgrel=0
pkgdesc="An offline version of arch linux wiki."
arch=('any')
url="https://github.com/whoisyoges/local-arch-wiki"
license=('GPL2')
depends=('arch-wiki-docs' 'dmenu' 'bash' 'sed')
optdepends=('rofi' 'firefox' 'xdg-utils' 'libnotify')
makedepends=('git')
source=("${pkgname}::git+${url}")
sha256sums=('SKIP')
package() {
cd "${srcdir}/$pkgname"
chmod +x local-arch-wiki
install -Dm755 local-arch-wiki "${pkgdir}/usr/local/bin/local-arch-wiki"
}
|