summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 393d436ebc0ea43d686adf889730fd3002272bc8 (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
# Maintainer: Pidchenko Matvii <pidchenkomatvii@gmail.com>
pkgname=pacfish
pkgver=1.0.5
pkgrel=1
pkgdesc="Lightweight AUR helper written in Ruby, following the KISS principles."
arch=('any')
url="https://codeberg.org/Ryba37/pacfish"
license=('GPL3')
depends=('ruby' 'pacman' 'ruby-colorize')
source=("git+$url")
sha256sums=('SKIP')

prepare() {
  cd "$srcdir/$pkgname"
}

build() {
  cd "$srcdir/$pkgname"
}

package() {
  cd "$srcdir/$pkgname"

  install -Dm755 main.rb "$pkgdir/usr/bin/pacfish"
  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}