blob: 74092ab5f24e9ea3c663e7e8cdb49017eb6d8b99 (
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
|
# Maintainer: aksr <aksr at t-com dot me>
pkgname=ad-git
pkgver=r229.56a366e
pkgrel=1
epoch=
pkgdesc="ASCII file dump that can also search for and highlight strings or numbers."
arch=('i686' 'x86_64')
url="https://github.com/paul-j-lucas/ad"
license=('GPL')
groups=()
depends=('')
makedepends=('git')
optdepends=()
checkdepends=()
provides=('ad')
conflicts=('ad')
replaces=()
backup=()
options=()
changelog=
install=
source=("$pkgname::git+https://github.com/paul-j-lucas/ad.git")
noextract=()
md5sums=('SKIP')
pkgver() {
cd "$srcdir/$pkgname"
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}
build() {
cd "$srcdir/$pkgname"
autoreconf -fiv
./configure --prefix=/usr
make
}
package() {
cd "$srcdir/$pkgname"
make DESTDIR="$pkgdir/" install
install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
}
|