blob: d5345bddc1a5e68fedcf8a5f339ff0c39016dec6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# Maintainer: zeroz <zeroz@none.cx>
pkgname=checkpac
pkgver=0.9.2
pkgrel=1
pkgdesc="Simple and fast package check and lookup utility for Arch Linux with AUR support"
arch=('any')
url="https://github.com/zeroz41/checkpac"
license=('GPL3')
depends=('bash' 'expac' 'util-linux' 'jq' 'pacman')
#no optdepends yet
#optdepends=('')
source=("$pkgname-$pkgver.tar.gz::https://github.com/zeroz41/$pkgname/archive/v$pkgver.tar.gz")
sha256sums=('89e8201e44038dea563b276b81addb861b5832a10a11f40604ee74cb1ea3d358')
package() {
cd "$pkgname-$pkgver"
# tools
install -Dm755 "bin/checkpac" "$pkgdir/usr/bin/checkpac"
# docs
install -Dm644 "README.md" "$pkgdir/usr/share/doc/$pkgname/README.md"
# license
install -Dm644 "LICENSE" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
# tab completions
install -Dm644 "completion/bash/checkpac-completion.bash" \
"$pkgdir/usr/share/bash-completion/completions/checkpac"
}
|