blob: a1ed5c3755caca2b4791f615835923463d0275a3 (
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
|
# Maintainer: taotieren <admin@taotieren.com>
pkgbase=deepin-unioncode-git
pkgname=deepin-unioncode-git
pkgver=1.2.9.r90.g24d1ace
pkgrel=1
pkgdesc="IDE authored by deepin"
arch=(x86_64
aarch64
loongarch64
mips64
sw_64
riscv64)
url="https://github.com/linuxdeepin/deepin-unioncode"
license=('GPL-3.0-only')
groups=()
provides=(${pkgbase%-git})
conflicts=(${pkgbase%-git})
replaces=()
depends=(
bash
capstone
clang
dbus
dtkcore
dtkwidget
dtkgui
gcc-libs
glibc
hicolor-icon-theme
java-runtime
jsoncpp
json-c
libelf
libelfin
libunwind
libx11
qt5-base
qt5-declarative
qt5-location
qt5-script
qt5-webchannel
qt5-webengine
syntax-highlighting5
python
zstd)
makedepends=(
argtable
cmake
git
ninja
catch2
doxygen
hiredis
llvm
ncurses
libdwarf
libmicrohttpd
libutf8proc
libxi
lxqt-build-tools
qt5-tools
openssl
systemd
pkgconf
)
checkdepends=()
optdepends=()
source=("${pkgname}::git+${url}.git")
sha256sums=('SKIP')
options=()
pkgver() {
cd "${srcdir}/${pkgname}"
( set -o pipefail
git describe --long --tag --abbrev=7 2>/dev/null | sed 's/^[vV]//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() {
export LDFLAGS="-Wl,-z,relro,-z,now -Wl,-z,shstk -Wl,--no-as-needed"
cd "${srcdir}/${pkgname}"
# See:https://wiki.archlinux.org/title/CMake_package_guidelines
# cmake -DCMAKE_BUILD_TYPE=None \
cmake -DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_CXX_COMPILER=clang++ \
-DCMAKE_C_COMPILER=clang \
-Wno-dev \
-B build \
-G Ninja
ninja -C build
}
package() {
DESTDIR="${pkgdir}" ninja -C "${srcdir}"/${pkgname}/build install
install -Dm0644 "${srcdir}/${pkgname}"/LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}/"
install -m0644 "${srcdir}/${pkgname}"/LICENSES/* -t "${pkgdir}/usr/share/licenses/${pkgname}/"
}
|