blob: d8304e243cd8394317243e05c5134261dba2861d (
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
108
109
110
111
112
113
114
115
|
# Maintainer:
_pkgname="mx-samba-config"
pkgname="$_pkgname-git"
pkgver=23.12.02.r0.g1a7c781
pkgrel=1
pkgdesc="Samba configuration tool designed to work with the usershare system"
url="https://github.com/MX-Linux/mx-samba-config"
license=('LGPL3')
arch=('x86_64')
depends=()
makedepends=(
'cmake'
'git'
'qt5-base'
)
provides=("$_pkgname=${pkgver%%.r*}")
conflicts=("$_pkgname")
install="$_pkgname.install"
_pkgsrc="$_pkgname"
source=(
"$_pkgsrc"::"git+$url.git"
"$_pkgname.sysusers.conf"
"mx-samba-config-lib.sh"
"mx-samba-config-list-users.sh"
)
sha256sums=(
'SKIP'
'65f5888ecfd8bf4c7f5a65213ddd710b93c632c1f05f258e1c691e9f7acff83e'
'02c7cbb51bd9b635e52bb64e858c87d539832e82c2df2c48af1efb47b1acd148'
'7d1636d66b34b04a91e03095132f54489e343934defe67c618e28312f4643ef4'
)
pkgver() {
cd "$_pkgsrc"
local _regex='^mx-samba-config \(([0-9\.]+)\).*$'
local _file='debian/changelog'
local _line=$(grep -Esm1 "$_regex" "$_file")
local _line_num=$(grep -Ensm1 "$_regex" "$_file" | cut -d':' -f1)
local _version=$(sed -E "s@$_regex@\1@" <<< "$_line")
local _commit=$(git blame -L $_line_num,$_line_num -- "$_file" | awk '{print $1;}')
local _revision=$(git rev-list --count $_commit..HEAD)
local _hash=$(git rev-parse --short HEAD)
printf "%s.r%s.g%s" "$_version" "$_revision" "$_hash"
}
prepare() {
# update version.h, see debian/rules
head -n1 "$_pkgsrc/debian/changelog" \
| sed -e "s/.*(\([^(]*\)).*/const QString VERSION {\"\1\"};/" \
> "$_pkgsrc/version.h"
# fix service name
sed -E 's&\b(systemctl is-enabled) smbd\b&\1 smb&' \
-i "$_pkgsrc/mainwindow.cpp"
}
build() {
local _cmake_options=(
-B build
-S "$_pkgsrc"
-DCMAKE_BUILD_TYPE=None
-DCMAKE_INSTALL_PREFIX='/usr'
-Wno-dev
)
cmake "${_cmake_options[@]}"
cmake --build build
}
package() {
depends+=(
'hicolor-icon-theme'
'qt5-base'
'samba'
)
# binary
install -Dm755 "build/$_pkgname" -t "$pkgdir/usr/bin"
# helper scripts
#install -Dm755 "$_pkgsrc/scripts"/* -t "$pkgdir/usr/lib/$_pkgname/"
install -Dm755 "mx-samba-config-lib.sh" \
"$pkgdir/usr/lib/$_pkgname/mx-samba-config-lib"
install -Dm755 "mx-samba-config-list-users.sh" \
"$pkgdir/usr/lib/$_pkgname/mx-samba-config-list-users"
# desktop file
install -Dm644 "$_pkgsrc/$_pkgname.desktop" -t "$pkgdir/usr/share/applications"
# icon
install -Dm644 "$_pkgsrc/images/mx-samba-config.svg" \
-t "$pkgdir/usr/share/icons/hicolor/scalable/apps"
# polkit
install -Dm644 "$_pkgsrc/actions/"*.policy -t "$pkgdir/usr/share/polkit-1/actions"
# sysusers
install -Dm644 "$_pkgname.sysusers.conf" "$pkgdir/usr/lib/sysusers.d/$_pkgname.conf"
# empty share folder
install -dm775 "$pkgdir/var/lib/samba/usershares"
}
|