summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: e96c1639058ca4fb90052c39b9262ea7c58e5ad1 (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
# Maintainer: robertfoster
pkgname=ocaml-fdkaac-git
pkgver=r80.cc4245a
pkgrel=2
pkgdesc="OCaml binding for the fdk-aac library"
arch=('i686' 'x86_64')
url="https://github.com/savonet/ocaml-fdkaac"
license=('GPL')
depends=('ocaml' 'libfdk-aac')
makedepends=('dune' 'git')
options=('!strip' '!makeflags')
source=("${pkgname}::git+https://github.com/savonet/ocaml-fdkaac.git")

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

build() {
    cd "${srcdir}/${pkgname}"  
    dune build    
}

package() {
    cd "${srcdir}/${pkgname}"
    dune install --prefix "${pkgdir}/usr" \
    --libdir "${pkgdir}$(ocamlfind printconf destdir)"
}

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

md5sums=('SKIP')