blob: cd299fd5e2ea4eafad9d5edf2cf1597d32682e37 (
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
|
# Maintainer: Gustavo Alvarez <sl1pkn07@gmail.com>
_plug=turnstile
pkgname=avisynth-plugin-${_plug}-git
pkgver=v1.0.0.0.g9174d07
pkgrel=1
pkgdesc="Plugin for Avisynth: ${_plug} (GIT version)"
arch=('x86_64')
url='https://github.com/ItEndsWithTens/TurnsTile'
license=('GPL')
depends=('avisynthplus')
makedepends=('git'
'cmake'
)
provides=("avisynth-plugin-${_plug}")
conflicts=("avisynth-plugin-${_plug}")
source=("${_plug}::git+https://github.com/ItEndsWithTens/TurnsTile.git"
'git+https://github.com/lvandeve/lodepng.git'
'esee'
)
sha256sums=('SKIP'
'SKIP'
'ca3cff98459311e4f3e219a3a4122562e737624ef9026048dc89b19bcc3568ab'
)
pkgver() {
cd "${_plug}"
echo "$(git describe --long --tags | tr - .)"
}
prepare() {
mkdir -p build
cd "${_plug}"
patch -p1 -i "${srcdir}/esee"
git config submodule.include/lodepng.url "${srcdir}/lodepng"
git submodule update --init include/lodepng
}
build() {
cd build
cmake "../${_plug}" \
-DCMAKE_BUILD_TYPE=None \
-DCMAKE_INSTALL_PREFIX=/usr \
-DAVISYNTHPLUS_HDR=/usr/include/avisynth/avisynth.h
make
}
package(){
make -C build DESTDIR="${pkgdir}" install
}
|