summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 8b0b08244d7e2c373537cd95be142369222d1763 (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
35
# Maintainer: Petr Šťastný <aur@soptik.tech>
pkgname=desed-git
pkgver=1.1.4.cae6ecf
pkgrel=1
pkgdesc="Debugger for sed, written in rust. Step through code and observe sed inner state."
arch=('x86_64')
url="https://github.com/soptikha2/desed"
license=('GPL3')
depends=('gcc-libs')
makedepends=('cargo' 'git')
conflicts=('desed')
source=("$pkgname::git+https://github.com/soptikha2/desed.git")
sha256sums=('SKIP')

pkgver() {
    cd "$pkgname"

    latest_version_published=$(git tag | tail -1 | sed 's/^v//')
    latest_commit_hash=$(git log -1 --format="%h")
    echo "$latest_version_published.$latest_commit_hash"
}

build() {
    cd "$pkgname"

    cargo build --release
}

package() {
    cd "$pkgname"

    install -D "target/release/desed" -t "$pkgdir/usr/bin"
    install "desed.1" -t "$(manpath | cut -d':' -f1)/man1"
    mandb
}