blob: e97cc3ac30ce9ffdd85f55baac3e714a06e0f912 (
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
64
65
|
# Maintainer: HurricanePootis <hurricanepootis@protonmail.com>
pkgname=maretf
pkgver=0.3.5
pkgrel=1
pkgdesc="A work in progress command-line utility to work with VTF files."
arch=('x86_64')
url="https://github.com/craftablescience/MareTF"
license=('MIT')
depends=('glibc' 'gcc-libs')
makedepends=('ninja' 'cmake' 'git')
source=("$pkgname::git+$url.git#tag=v${pkgver}"
"git+https://github.com/craftablescience/sourcepp.git"
"git+https://github.com/p-ranav/argparse.git"
"git+https://github.com/jothepro/doxygen-awesome-css.git"
"git+https://github.com/craftablescience/bufferstream.git"
"cryptopp::git+https://github.com/abdes/cryptopp-cmake"
"git+https://github.com/Tessil/hat-trie.git"
"git+https://github.com/richgel999/miniz.git"
"git+https://github.com/zlib-ng/minizip-ng.git"
)
sha256sums=('9a70881eb576ed57647c893f1b2a74fb5b1d3c3722f030830d4e3094ee9ae59e'
'SKIP'
'SKIP'
'SKIP'
'SKIP'
'SKIP'
'SKIP'
'SKIP'
'SKIP')
prepare() {
cd "$srcdir/$pkgname"
git submodule init
for submodule in {sourcepp,argparse};
do
git config submodule.ext/${submodule}.url "$srcdir/$submodule"
done
git -c protocol.file.allow=always submodule update
cd "$srcdir/$pkgname/ext/sourcepp"
git submodule init
for submodule in {bufferstream,cryptopp,hat-trie,miniz,minizip-ng};
do
git config submodule.ext/${submodule}.url "$srcdir/$submodule"
done
git config submodule.docs/layout/doxygen-awesome-css.url "$srcdir/doxygen-awesome-css"
git -c protocol.file.allow=always submodule update
}
build() {
cd "$srcdir"
cmake -B build -S "$pkgname" \
-GNinja \
-DCMAKE_BUILD_TYPE=None \
-DCMAKE_INSTALL_PREFIX=/usr \
-DZLIBNG_ENABLE_TESTS=OFF
cmake --build build
}
package() {
cd "$srcdir"
install -Dm755 "$srcdir/build/$pkgname" "$pkgdir/usr/bin/$pkgname"
install -Dm644 "$srcdir/$pkgname/LICENSE" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}
|