summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 4a9daf94fcc0ff88e2544fe22ffe9c89190a4dd4 (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
# Maintainer: Kevin MacMartin <prurigro@gmail.com>
# Contributor: alerque

_pkgname=tdf
pkgname=${_pkgname}-git
pkgver=20250101.r56.490b66b
pkgrel=1
pkgdesc='A terminal-based PDF viewer'
url='https://github.com/itsjunetime/tdf'
license=('MPL-2.0')
arch=('i686' 'x86_64' 'armv6h' 'armv7h' 'aarch64')
depends=('cairo' 'poppler-glib')
makedepends=('git' 'rustup')
provides=("$_pkgname")
conflicts=("$_pkgname")
source=('git+https://github.com/itsjunetime/tdf')
sha512sums=('SKIP')

pkgver() {
  cd $_pkgname
  printf "%s.r%s.%s" "$(git show -s --format=%ci main | sed 's/\ .*//g;s/-//g')" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}

build() {
  cd $_pkgname
  CFLAGS+=' -ffat-lto-objects'
  cargo build --release
}

package() {
  cd $_pkgname
  install -Dm755 ./target/release/$_pkgname "$pkgdir/usr/bin/$_pkgname"
}