summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: c9b0b80d544e282292d8e6d6e327d97617581a2d (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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
# Maintainer: Musee Ullah <lae@lae.is>
# Contributor: Maxime Gauduin <alucryd@archlinux.org>
# Contributor: Qirui Wang <wqr.prg@gmail.com>

pkgname=aegisub-wangqr-git
_pkgtag='v3.3.3'
pkgver=3.3.3.r0.a596a8811
pkgrel=2
pkgdesc='A general-purpose subtitle editor with ASS/SSA support (wangqr fork)'
arch=(x86_64)
url=http://www.aegisub.org
license=(
  GPL
  BSD
)
depends=(
  alsa-lib
  avisynthplus
  boost-libs
  fftw
  fontconfig
  hunspell
  icu
  libass.so
  libffms2.so
  libgl
  libpulse
  wxwidgets-gtk3
  uchardet
  zlib
)
makedepends=(
  autoconf-archive
  boost
  cmake
  git
  intltool
  lua
  mesa
)
provides=(aegisub)
conflicts=(aegisub aegisub-git)
source=(
  git+https://github.com/wangqr/Aegisub.git
)
sha256sums=(
  SKIP
)

pkgver() {
  cd Aegisub
  echo "${_pkgtag#v}.r$(git rev-list --count ${_pkgtag}..HEAD).$(git rev-parse --short HEAD)"
}

prepare() {
  mkdir -vp build/
  cd Aegisub

  # Ensures Aegisub runs under Xwayland, since it doesn't support Wayland properly
  sed 's/^Exec=/Exec=env GDK_BACKEND=x11 /' -i packages/desktop/aegisub.desktop.template.in
}

build() {
  cd build

  cmake \
    -DCMAKE_INSTALL_PREFIX=/usr \
    -DwxWidgets_CONFIG_EXECUTABLE=/usr/bin/wx-config \
    -DWITH_STARTUPLOG=OFF \
    -DWITH_{PORTAUDIO,OPENAL,OSS}=OFF \
    ../Aegisub
  # TODO: Build translations
}

package() {
  cd "${srcdir}/build"

  make DESTDIR="${pkgdir}" install

  cd "${srcdir}/Aegisub"
  install -dm 755 "${pkgdir}/usr/share/licenses/${pkgname}"
  install -m 644 LICENCE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"

  cd "${srcdir}/Aegisub/automation/"
  for subdir in {autoload,demos,include,include/aegisub}
  do
    install -dm 755 "${pkgdir}/usr/share/aegisub/automation/${subdir}"
    for resource in $(find ${subdir} -maxdepth 1 -type f)
    do
      install -m 644 "${resource}" "${pkgdir}/usr/share/aegisub/automation/${resource}"
    done
  done
}

# vim: ts=2 sw=2 et: