comparison Templates/meson.sh @ 349:7b000befead5

vanilla: improve docs and hierarchy
author David Demelier <markand@malikania.fr>
date Thu, 28 Mar 2019 20:15:00 +0100
parents templates/meson.sh@251b663c3c01
children 65eac7e33a2a
comparison
equal deleted inserted replaced
348:c669b5463d04 349:7b000befead5
1 #!/bin/sh
2 #
3 # Copyright (c) 2019 FirstName LastName <mailaddress>
4 #
5 # Permission to use, copy, modify, and/or distribute this software for any
6 # purpose with or without fee is hereby granted, provided that the above
7 # copyright notice and this permission notice appear in all copies.
8 #
9 # THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10 # WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11 # MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12 # ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13 # WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14 # ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15 # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16 #
17
18 PKGNAME=name
19 PKGVERSION=1.0.0
20 PKGREVISION=1
21 PKGLICENSE="one of README.licenses.md or CUSTOM"
22 PKGSUMMARY="short summary"
23 PKGDOWNLOAD="http://example.org/$PKGNAME-$PKGVERSION.tar.xz"
24 PKGDEPENDS="dev/meson:build"
25 # PKGOPTIONS="FOO BAR BAZ"
26
27 : ${CC:=gcc}
28 : ${CFLAGS:=-O2}
29 : ${CXX:=g++}
30 : ${CXXFLAGS:=-O2}
31 : ${LDFLAGS:=}
32
33 build()
34 {
35 rm -rf $PKGNAME-$PKGVERSION
36 tar xvaf $PKGNAME-$PKGVERSION.tar.gz
37 pushd $PKGNAME-$PKGVERSION
38
39 CC="$CC" \
40 CFLAGS="$CFLAGS" \
41 CXX="$CXX" \
42 CXXFLAGS="$CXXFLAGS" \
43 LDFLAGS="$LDFLAGS" \
44 meson \
45 --prefix /usr \
46 --buildtype release \
47 --default-library shared \
48 . build
49 ninja -C build
50 DESTDIR=$DESTDIR ninja -C build install
51
52 popd
53 rm -rf $PKGNAME-$PKGVERSION
54 }
55