blob: eaf80816e4a0e14109247a3a6131d9f081ba9d22 (
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
|
# Maintainer: lantw44 at gmail dot com
pkgname=mingw-w64-libepoxy
pkgver=1.5.10
pkgrel=1
pkgdesc="A library for handling OpenGL function pointer management for you (mingw-w64)"
arch=('any')
url="https://github.com/anholt/libepoxy"
license=('MIT')
makedepends=(
'mingw-w64-gcc'
'mingw-w64-meson'
'python')
depends=(
'mingw-w64-crt')
options=('!strip' '!buildflags' 'staticlibs')
source=("libepoxy-${pkgver}.tar.gz::https://github.com/anholt/libepoxy/archive/${pkgver}.tar.gz")
sha256sums=('a7ced37f4102b745ac86d6a70a9da399cc139ff168ba6b8002b4d8d43c900c15')
_architectures=('i686-w64-mingw32' 'x86_64-w64-mingw32')
build() {
cd "${srcdir}/libepoxy-${pkgver}"
for _arch in "${_architectures[@]}"; do
mkdir -p "build-${_arch}"
cd "build-${_arch}"
"${_arch}-meson" \
--default-library both
ninja
cd ..
done
}
package() {
cd "${srcdir}/libepoxy-${pkgver}"
for _arch in "${_architectures[@]}"; do
cd "build-${_arch}"
DESTDIR="$pkgdir" ninja install
find "$pkgdir/usr/${_arch}" -name '*.exe' -exec "${_arch}-strip" '{}' ';'
find "$pkgdir/usr/${_arch}" -name '*.dll' -exec "${_arch}-strip" --strip-unneeded '{}' ';'
find "$pkgdir/usr/${_arch}" '(' -name '*.a' -o -name '*.dll' ')' -exec "${_arch}-strip" -g '{}' ';'
cd ..
done
}
|