summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: ccfb50a9ded0e52d9067855c501af015a3c1fadb (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
# Maintainer: Akhil J <akhil.j@outlook.in>

pkgname=ondir-git
pkgver=r13.55279f0
pkgrel=1
pkgdesc="a small program to automate tasks specific to certain directories"
arch=('i686' 'x86_64')
url="https://github.com/alecthomas/ondir.git"
license=('GPL2')
makedepends=('git')
depends=('glibc')
provides=("$pkgname")
conflicts=("$pkgname")
source=("$pkgname::git://github.com/alecthomas/ondir.git")
md5sums=('SKIP')

pkgver() {
  cd "$pkgname"
  printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}

build() {
  cd "$pkgname"
  make CFLAGS="$CFLAGS "'-DVERSION=\"$(VERSION)\" -DGLOBAL_CONF=\"$(CONF)\"' LDFLAGS="$LDFLAGS"
}

package() {
  cd "$pkgname"
  make DESTDIR="$pkgdir" install
}