blob: 2714697310b61c4b1f53a9a308a05bbe81a93f64 (
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
|
# Contributor: tyr0 <thomas.hoernes@gmx.at>
# Contributor: Daniel YC Lin <dlin.tw at gmail>
# Maintainer: Y Paritcher <y.archlinux@paritcher.com>
pkgname=xxdiff
pkgver=5.0
pkgrel=2
pkgdesc="A graphical browser for file and directory differences."
url="https://github.com/blais/xxdiff"
license=('GPL2')
depends=('qt5-base')
makedepends=('flex>=2.5.31' 'bison' 'git' 'python-docutils')
arch=('x86_64' 'i686')
source=("git+https://github.com/blais/xxdiff.git" "cpp11.diff")
md5sums=('SKIP'
'feb486afc64fa53cfc348219d3779d41')
prepare() {
cd "xxdiff/src"
# Debian C++11 Patch
patch -N -i ../../cpp11.diff
}
build() {
cd "$pkgname/src"
make -f Makefile.bootstrap
make
}
package() {
cd "$pkgname"
install -D -m 755 "bin/xxdiff" "$pkgdir/usr/bin/xxdiff"
install -D -m 644 "src/xxdiff.1" "$pkgdir/usr/share/man/man1/xxdiff.1"
}
|