summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 63d4f0e6d4fae9571f3a275ec43de3ae8c0097e4 (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
36
37
38
39
40
# Maintainer: Vaporeon <vaporeon@vaporeon.io>
# Contributor:  benutzer193 <registerbn+arch a_t gmail d_ot com>

pkgname=flips-git
pkgver=r183.07162ca
pkgrel=1
pkgdesc="A patcher for IPS and BPS files (Git version)"
arch=(x86_64)
url="https://github.com/Alcaro/Flips"
license=(GPL-3.0-or-later)
depends=(
  at-spi2-core
  cairo
  gcc-libs
  gdk-pixbuf2
  glibc
  glib2
  gtk3
  harfbuzz
  hicolor-icon-theme
  pango
  zlib
)
makedepends=(git)
source=("git+https://github.com/Alcaro/Flips.git")
sha256sums=(SKIP)

pkgver() {
  cd Flips
  printf "r%s.%s" "$(git rev-list --count HEAD)"\
    "$(git rev-parse --short HEAD)"
}

build() {
  make CFLAGS="$CFLAGS $LDFLAGS" -C Flips
}

package() {
  make DESTDIR="${pkgdir}" -C Flips install
}