blob: b7520642b46e2e10a604bd5157be4802c684b66b (
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
# Maintainer: Martchus <martchus@gmx.net>
# Contributor: Karl-Felix Glatzer <karl.glatzer@gmx.de>
# This version includes the programs in contrast to the version found in the AUR.
pkgname=mingw-w64-x264-bootstrap
pkgver=148.20170521
pkgrel=1
epoch=1
pkgdesc='Free library for encoding H264/AVC video streams (mingw-w64)'
arch=('any')
url='https://www.videolan.org/developers/x264.html'
license=('GPL')
depends=('mingw-w64-crt')
#provides=('mingw-w64-libx264.so')
options=(!strip !buildflags staticlibs)
makedepends=('mingw-w64-gcc' 'yasm' 'git')
provides=(${pkgname%-bootstrap})
conflicts=(${pkgname%-bootstrap})
_commit=aaa9aa83a111ed6f1db253d5afa91c5fc844583f
source=("git://git.videolan.org/x264.git#commit=${_commit}")
md5sums=('SKIP')
_architectures="i686-w64-mingw32 x86_64-w64-mingw32"
pkgver() {
cd x264
local _ver=$(grep '#define X264_BUILD' x264.h | cut -d' ' -f3)
local _date=$(git log -1 --format="%cd" --date=short | tr -d -)
echo ${_ver}.${_date}
}
build() {
for _arch in ${_architectures}; do
mkdir -p ${srcdir}/build-${_arch} && cd ${srcdir}/build-${_arch}
unset LDFLAGS CPPFLAGS
${srcdir}/x264/configure --host=${_arch} \
--cross-prefix="${_arch}-" \
--enable-win32thread \
--enable-shared \
--enable-static
make
done
}
package() {
for _arch in ${_architectures}; do
cd ${srcdir}/build-${_arch}
make DESTDIR="$pkgdir" \
bindir=/usr/${_arch}/bin \
libdir=/usr/${_arch}/lib \
includedir=/usr/${_arch}/include \
install
${_arch}-strip --strip-all ${pkgdir}/usr/${_arch}/bin/*.exe
${_arch}-strip --strip-unneeded ${pkgdir}/usr/${_arch}/bin/*.dll
${_arch}-strip -g ${pkgdir}/usr/${_arch}/lib/*.a
done
}
# vim:set ts=2 sw=2 et:
|