summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 89d8ed4491c7f015f5e6fed6167ad6e8512eec44 (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
# Maintainer: taotieren <admin@taotieren.com>

pkgname=chinesechess-git
_pkgname=ChineseChess
pkgver=6.3.r0.gc2c5681
pkgrel=8
pkgdesc="Cross-platform and online battle platform game based on Qt: Chinese Chess. Also known as:『Xiangqi』『中国象棋』"
arch=($CARCH)
license=('GPL-3.0-only')
_qt=qt5
depends=(
    hicolor-icon-theme
    $_qt-charts
    $_qt-x11extras
    $_qt-svg
    $_qt-multimedia
    $_qt-tools
    $_qt-xmlpatterns)
makedepends=(git
    cmake
    gendesk
    ninja)
url="https://github.com/XMuli/ChineseChess"
source=("$pkgname::git+${url}.git")
md5sums=('SKIP')

pkgver() {
    cd "${srcdir}/${pkgname}"
    (
        set -o pipefail
        git describe --long --tag --abbrev=7 2>/dev/null | sed 's/^v//g;s/\([^-]*-g\)/r\1/;s/-/./g' ||
            printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short=7 HEAD)"
    )
}

prepare() {
    git -C "${srcdir}/${pkgname}" clean -dfx
}

build() {
    cd "$srcdir/$pkgname"
    # see:https://wiki.archlinux.org/title/CMake_package_guidelines
    # gcc build
    #     cmake -DCMAKE_BUILD_TYPE=Release \
    cmake -DCMAKE_BUILD_TYPE=None \
        -DCMAKE_INSTALL_PREFIX=/usr \
        -DCMAKE_INSTALL_LIBDIR=lib \
        -B build \
        -G Ninja
}

package() {
    cd "$srcdir/$pkgname"
    # ninja install
    DESTDIR="${pkgdir}" ninja -C build install
    gendesk -q -f -n --pkgname="${pkgname%-git}" --name="${pkgname%-git}" --comment="${pkgdesc}" --categories="Game" --exec="${_pkgname}" --icon="${pkgname%-git}.svg"
    install -Dm0644 "$srcdir/$pkgname/resources/logo/logo.svg" "${pkgdir}/usr/share/icons/hicolor/scalable/apps/${pkgname%-git}.svg"
    install -Dm0644 "${pkgname%-git}.desktop" -t "${pkgdir}/usr/share/applications"
}