blob: c42f221a362a29f17752f08e013abe600a51d0ec (
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
|
# Maintainer: dreieck
# Contributor: jmerdich
# Contributor: foo <foo(at)gmail(dot)com>
# Contributor: bar <bar(at)gmai(dot)com>
_pkgname=tty0tty
pkgname=tty0tty-dkms-git
pkgver=1.2+66.r82.20241006.9452a60
pkgrel=1
pkgdesc="tty0tty Virtual Serial Cable (DKMS and userspace variant)."
arch=(
'i686'
'x86_64'
)
url="https://github.com/freemed/tty0tty" # Version 1.2
# url="https://github.com/lcgamboa/tty0tty" # Version 1.4
license=(
'GPL-2.0-only'
)
depends=(
'dkms'
)
makedepends=('git')
optdepends=(
"glibc: For '/usr/bin/tty0tty'."
"python-pyserial: For example script '/usr/share/doc/tty0tty/examples/tnt1_echo_tnt0.py'."
)
provides=(
"${_pkgname}=${pkgver}"
"${_pkgname}-pts=${pkgver}"
"${_pkgname}-doc=${pkgver}"
)
conflicts=(
"${_pkgname}"
"${_pkgname}-pts"
)
source=(
"${_pkgname}::git+${url}.git"
'50-tty0tty.rules.arch.patch'
'modules-load-tty0tty.conf'
)
sha256sums=(
'SKIP' # Upstream git source
'4babdbb8988fae9c603c210c9afc1a9d066f40d4a6e23d609c6ae6200bc6d645' # 50-tty0tty.rules.arch.patch
'31e97d1ea45da90c70715073d2279fc9482e497179b4fc44645684ffe7371217' # modules-load-tty0tty.conf
)
prepare() {
cd "${srcdir}/${_pkgname}"
for _patch in "${srcdir}"/*.patch; do
msg2 "Applying patch $(basename "${_patch}") ..."
patch -N -p1 --follow-symlinks -i "${_patch}"
done
git log > git.log
}
pkgver() {
cd "${srcdir}/${_pkgname}"
_ver="$(git describe --tags | sed 's|^[vV]||' | sed 's|-[^-]*$||' | tr '-' '+')"
_rev="$(git rev-list --count HEAD)"
_date="$(git log -1 --date=format:"%Y%m%d" --format="%ad")"
_hash="$(git rev-parse --short HEAD)"
if [ -z "${_ver}" ]; then
error "Version could not be determined."
return 1
else
printf '%s' "${_ver}.r${_rev}.${_date}.${_hash}"
fi
}
build() {
cd "${srcdir}/${_pkgname}/pts"
make
}
package() {
cd "${srcdir}"
# Install
#msg2 "Copying DKMS module..."
# Copy dkms.conf
install -D -v -m644 "${_pkgname}/debian/tty0tty-dkms.dkms" "${pkgdir}/usr/src/${_pkgname}-${pkgver}/dkms.conf"
# Set name and version
sed -e "s/\#MODULE_VERSION\#/${pkgver}/" \
-i "${pkgdir}/usr/src/${_pkgname}-${pkgver}/dkms.conf"
# Copy sources (including Makefile)
cp -rv "${_pkgname}/module/"* "${pkgdir}/usr/src/${_pkgname}-${pkgver}"/
# Copy udev rules
install -D -v -m644 "${_pkgname}/module/50-tty0tty.rules" "${pkgdir}/usr/lib/udev/rules.d/50-tty0tty.rules"
# Install userspace software
install -D -v -m755 "${_pkgname}/pts/tty0tty" "${pkgdir}/usr/bin/tty0tty"
# Install documentation
for _docfile in git.log AUTHORS INSTALL README.md THANKS TODO; do
install -D -v -m644 "${srcdir}/${_pkgname}/${_docfile}" "${pkgdir}/usr/share/doc/${_pkgname}/${_docfile}"
done
install -D -v -m644 'modules-load-tty0tty.conf' "${pkgdir}/usr/share/doc/${_pkgname}/modules-load-tty0tty.conf"
cp -rv "${_pkgname}/examples" "${pkgdir}/usr/share/doc/${_pkgname}/examples"
# Install license information
install -D -v -m644 "${srcdir}/${_pkgname}/COPYING" "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
ln -svr "${pkgdir}/usr/share/licenses/${pkgname}/COPYING" "${pkgdir}/usr/share/doc/COPYING"
}
|