-
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathPKGBUILD
More file actions
29 lines (25 loc) · 654 Bytes
/
PKGBUILD
File metadata and controls
29 lines (25 loc) · 654 Bytes
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
# Maintainer: Lawrence Murray <lawrence@indii.org>
pkgname=doxide
pkgver=0.0.0
pkgrel=1
pkgdesc="Modern documentation for modern C++"
arch=('x86_64')
url="https://doxide.org"
license=('Apache-2.0')
depends=('libyaml')
makedepends=('cmake', 'cli11')
source=("$pkgname-$pkgver.tar.gz")
md5sums=('SKIP')
build() {
cd "$srcdir/$pkgname-$pkgver"
cmake -DCMAKE_BUILD_TYPE=Release . --verbose
cmake --build . --config Release --verbose
}
check() {
cd "$srcdir/$pkgname-$pkgver"
./doxide help
}
package() {
cd "$srcdir/$pkgname-$pkgver"
DESTDIR="$pkgdir" cmake --install . --config Release --verbose
}