blob: 625fc93e69f58d507335b51560e5108dda8a4578 (
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
|
# Maintainer: Whyme Lyu <callme5long@gmail.com>
_pkgname=p3wm
pkgname=p3wm-git
pkgver=0.4.0.r0.848e5d1 # not used anyway
pkgrel=1
pkgdesc="Three-way merge .pacnew files"
arch=('any')
url="https://github.com/5long/p3wm"
license=('custom:ISC')
groups=()
depends=(
'bash'
'coreutils'
'diffutils'
'pacman'
'sed'
'tar'
)
optdepends=(
'git: default merge tool'
'rcs: default merge tool'
'kdiff3: default resolve tool'
'meld: default resolve tool'
'vim: default resolve tool'
)
makedepends=('git' 'asciidoctor')
provides=("$_pkgname")
conflicts=("$_pkgname")
source=("git+https://github.com/5long/$_pkgname")
sha256sums=('SKIP')
pkgver() {
cd "$_pkgname"
printf "%s" "$(git describe --tags --long | sed 's/^v//;s/\([^-]*-\)g/r\1/;s/-/./g')"
}
build() {
cd "$_pkgname"
make
}
package() {
cd "$_pkgname"
make PREFIX="$pkgdir/usr" install
}
|