blob: 9c9e85d741832d4f1cb095c24b73f4cf7dc982fa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# Maintainer: Doug Patti <douglas.patti@gmail.com>
pkgname=pellets
pkgver=1.0.1
pkgrel=1
pkgdesc="manage installed Arch packages with a configuration file"
arch=('any')
url="https://github.com/dpatti/pellets"
license=('Unlicense')
depends=('bash')
source=("$pkgname-$pkgver.tar.gz::$url/archive/refs/tags/$pkgver.tar.gz")
md5sums=('268bdaaef8a1be7521ed5acd96025393')
package() {
install -Dm775 "$srcdir/$pkgname-$pkgver/pellets" "$pkgdir/usr/bin/pellets"
}
|