blob: 96ec7d1110cb9b2559979f78daa74bff0d4e8533 (
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
|
#!/bin/mkpkg
# description: Libraries implementing freedesktop.org specifications
# url: https://gitlab.freedesktop.org/vyivel/libsfdo
name=libsfdo
version=0.1.4
release=1
depends=()
makedeps=()
source=(https://gitlab.freedesktop.org/vyivel/libsfdo/-/archive/v$version/$name-v$version.tar.bz2)
sha256sums=(
"155702f21c282693ead7818198fde194ab7c76e0cf1a21bc7b404e5f9ec2c369"
)
build() {
cd $name-v$version
meson setup build \
--prefix=/usr \
--libdir=lib \
--buildtype=release \
-Db_lto=true \
-Dexamples=false \
-Dtests=false
ninja -C build
DESTDIR=$PKG ninja -C build install
}
signify() {
untrusted comment: public key
RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3
}
# vim: filetype=sh
|