blob: e6d4021525ab99d10875981f029df9e652f7c818 (
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
|
# Maintainer: aksr <aksr at t-com dot me>
pkgname=rlcmp-git
pkgver=1.1.0.r6.gab2f3b2
pkgrel=1
epoch=
pkgdesc="Recursive file compare tool"
arch=('i686' 'x86_64')
url="https://github.com/n-t-roff/rlcmp"
license=('BSD')
groups=()
depends=('libavlbst')
makedepends=('git')
optdepends=()
checkdepends=()
provides=('rlcmp')
conflicts=('rlcmp')
replaces=()
backup=()
options=()
changelog=
install=
source=("$pkgname::git+https://github.com/n-t-roff/rlcmp.git")
noextract=()
md5sums=('SKIP')
pkgver() {
cd "$srcdir/$pkgname"
git describe --tags | sed -E 's/^v//;s/([^-]*-g)/r\1/;s/-/./g'
}
build() {
cd "$srcdir/$pkgname"
make INCDIR=/usr/include LIBDIR=/usr/lib
}
package() {
cd "$srcdir/$pkgname"
make BINDIR=$pkgdir/usr/bin \
MANDIR=$pkgdir/usr/share/man \
INCDIR=$pkgdir/usr//include \
LIBDIR=$pkgdir/usr/lib install
install -Dm644 LICENSE $pkgdir/usr/share/licenses/${pkgname%-*}/LICENSE
}
|