summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: c38b0431080a27f98c930abdebddbc06879c6f9b (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: Peter Mattern <pmattern at arcor dot de>

_pkgname=featherpad
pkgname=$_pkgname-git
pkgver=1.2.0.2.g352c6aa
pkgrel=1
pkgdesc='Lightweight Qt5 plain text editor for Linux'
arch=('i686' 'x86_64')
url='https://github.com/tsujan/featherpad'
license=('GPL3')
depends=('qt6-svg' 'hunspell' 'desktop-file-utils' 'gtk-update-icon-cache')
makedepends=('git' 'cmake' 'qt6-tools')
optdepends=('qt6-translations: localized keyboard shortcuts')
provides=("$_pkgname")
conflicts=("$_pkgname")
source=("git+${url}.git")
sha256sums=("SKIP")

pkgver() {
  cd $_pkgname
  git describe --always | sed "s:^V::;s:-:.:g"
}

build() {
  rm -Rf build && mkdir build
  cd build
  cmake $srcdir/$_pkgname/ -DENABLE_QT5=OFF
  make
}

package() {
  cd build
  make DESTDIR="${pkgdir}" install
}