summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: d9dc04ee95426c82bdb7b16bc6a1cc11e6d2e087 (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
32
33
34
# Maintainer: Jakub SzczerbiƄski <jszczerbinsky2@gmail.com>
pkgname=ptsh
pkgver=0.4
pkgrel=1
pkgdesc="Visually customizable shell utils"
arch=('any')
url="https://github.com/jszczerbinsky/ptSh"
license=('MIT')
groups=()
depends=()
makedepends=()
optdepends=()
provides=()
conflicts=()
replaces=()
backup=()
options=()
install=
changelog=
source=("https://github.com/jszczerbinsky/ptSh/archive/refs/tags/v${pkgver//_/-}.tar.gz")
noextract=()
sha256sums=('7c37a88056d6270b25b79db07c6a3828fefd42c8b57660f9b6a1f65b0d76c5bf')

build() {
  cd "ptSh-${pkgver//_/-}"
  make
}

package() {
	mkdir -p "$pkgdir/usr"
  cd "ptSh-${pkgver//_/-}"
  make DESTDIR="$pkgdir/" install
	echo "Version: v$pkgver" > "$pkgdir/usr/share/ptSh/version.txt"
}