summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: b416993828f3bbb3195e8c645926f35032909072 (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
# Maintainer: drakkan <nicola.murino at gmail dot com>
pkgname=mingw-w64-vo-aacenc
pkgver=0.1.3
pkgrel=1
pkgdesc="VisualOn Advanced Audio Coding (AAC) encoder (mingw-w64)"
arch=('any')
url="http://sourceforge.net/projects/opencore-amr/"
license=('APACHE')
makedepends=('mingw-w64-configure')
depends=('mingw-w64-crt')
options=('!strip' '!buildflags' 'staticlibs')
source=(http://downloads.sourceforge.net/opencore-amr/vo-aacenc-$pkgver.tar.gz)
sha256sums=('e51a7477a359f18df7c4f82d195dab4e14e7414cbd48cf79cc195fc446850f36')

_architectures="i686-w64-mingw32 x86_64-w64-mingw32"

build() {
  cd "${srcdir}/vo-aacenc-$pkgver/"
  for _arch in ${_architectures}; do
    mkdir -p build-${_arch} && pushd build-${_arch}
    ${_arch}-configure ..
    make
    popd
  done
}

package() {
  for _arch in ${_architectures}; do
    cd "${srcdir}/vo-aacenc-$pkgver/build-${_arch}"
    make DESTDIR="${pkgdir}" install
    ${_arch}-strip --strip-unneeded "$pkgdir"/usr/${_arch}/bin/*.dll
    ${_arch}-strip -g "$pkgdir"/usr/${_arch}/lib/*.a
  done
}

# vim: ts=2 sw=2 et: