blob: 6128ff77e5bca67a52a0d1770186ae8c50a9fd0a (
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
|
# Maintainer: dreieck (https://aur.archlinux.org/account/dreieck)
_projectname="xasm"
_pkgname="${_projectname}"
pkgname="${_pkgname}-git"
pkgver=3.2.1+6.r148.20240609.f5903fb
pkgrel=1
pkgdesc="6502 cross-assembler with original syntax extensions. By default it generates binaries for Atari 8-bit computers."
arch=(
'aarch64'
'armv6h'
'armv7h'
'i686'
'x86_64'
)
_gitprotocol='git+https'
_githost='github.com'
_gituser='pfusik'
_giturl="${_githost}/${_gituser}/${_projectname}.git"
url="http://${_githost}/${_gituser}/${_projectname}"
license=("custom: poetic (public domain)")
depends=(
'gcc-libs'
'glibc'
)
makedepends=(
'asciidoc'
'dmd'
'git'
'patch'
)
checkdepends=()
provides=(
"${_pkgname}=${pkgver}"
)
conflicts=(
"${_pkgname}"
)
replaces=()
source=(
"${_pkgname}::${_gitprotocol}://${_giturl}"
"COPYING.txt"
)
sha256sums=(
'SKIP'
'0ac0b64e62cae3eef68466d603e86350503763edd86135265c9a4e06ee6f690d'
)
prepare() {
cd "${srcdir}/${_pkgname}"
git log > "${srcdir}/git.log"
}
pkgver() {
cd "${srcdir}/${_pkgname}"
_ver="$(git describe --tags | sed -E -e 's|^xasm-||' -e 's|^[vV]||' -e 's|\-g[0-9a-f]*$||' | 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}"
printf '%s\n' " --> building ..."
make
}
package() {
cd "${srcdir}/${_pkgname}"
printf '%s\n' " --> installing ..."
make DESTDIR="${pkgdir}" prefix="/usr" install
_docfiles=(
"${srcdir}/git.log"
README.md
)
_licensefiles=(
"${srcdir}/COPYING.txt"
)
printf '%s\n' " --> installing documentation ..."
for _docfile in "${_docfiles[@]}"; do
install -D -v -m644 "${_docfile}" "${pkgdir}/usr/share/doc/${_pkgname}/$(basename "${_docfile}")"
done
printf '%s\n' " --> installing license ..."
for _licensefile in "${_licensefiles}"; do
install -D -v -m644 "${_licensefile}" "${pkgdir}/usr/share/licenses/${pkgname}/$(basename "${_licensefile}")"
ln -svr "${pkgdir}/usr/share/licenses/${pkgname}/$(basename "${_licensefile}")" "${pkgdir}/usr/share/doc/${_pkgname}/$(basename "${_licensefile}")"
done
}
|