summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 139d3911992fc90f3c667b4b03c887fcfa33f3b7 (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
# Maintainer: Stefan Husmann <stefan-husmann@t-online.de>
# Contributor: Hans-Nikolai Viessmann <hans AT viess.mn>
# Contributor: max_meyer
# Contributor: popsch
# Based on original tikzit-aur-package made by pippin

pkgname=tikzit
pkgver=2.1.6
pkgrel=1
pkgdesc="Allows the creation and modification of TeX diagrams written using the pgf/TikZ macro library"
arch=('i686' 'x86_64')
url="https://tikzit.github.io/"
license=('GPL2')
depends=('qt5-base' 'poppler-qt5' 'hicolor-icon-theme')
optdepends=('texlive-core: previews')
source=("$pkgname-$pkgver.tar.gz::https://github.com/tikzit/tikzit/archive/v$pkgver.tar.gz")
sha256sums=('40e160f654a25a3a36d6a5361eef71a51f9d3b5eec3b42dd9246ec26402149d1')

build() {
  cd $pkgname-$pkgver
  qmake PREFIX=/usr \
        QMAKE_CFLAGS="${CFLAGS}" \
        QMAKE_CXXFLAGS="${CXXFLAGS}" -r
  make
}

package() {
  cd $pkgname-$pkgver
  make INSTALL_ROOT="$pkgdir" install
}