blob: ac9f8dce120e33abfaebcd9d2d90623ecd5b5843 (
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
116
117
|
#
# PKGBUILD for opencbm-git
#
# Contributor: Uffe Jakobsen <microtop@starion.dk>
# Maintainer: Uffe Jakobsen <microtop@starion.dk>
#
pkgname=opencbm-git
pkgver=r1506.db80d1be
pkgrel=1
epoch=
pkgdesc="OpenCBM allows access to Commodore (C64) floppy drives 1540, 1541, 1570, 1571, 1581"
arch=('i686' 'x86_64')
url="https://github.com/OpenCBM/OpenCBM"
license=('GPL-2.0-only')
groups=()
depends=('libusb' 'ncurses')
makedepends=('git' 'cc65')
checkdepends=()
optdepends=("nibtools: Commodore 1541/1571 disk image nibbler")
provides=('opencbm')
conflicts=('opencbm')
replaces=()
backup=('etc/opencbm.conf')
options=()
install=
changelog=
noextract=()
_repo_dirname=_opencbm.repo.git
source=(${_repo_dirname}::git+https://github.com/OpenCBM/OpenCBM.git)
md5sums=('SKIP')
build_kernel_module=
#
#
#
pkgver()
{
cd "${srcdir}/${_repo_dirname}"
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}
prepare()
{
cd "${srcdir}/${_repo_dirname}"
# nibtools submodule
# not in use - there is a separate nibtools package
#git submodule update --init
# temp hack in order to compile nibtools
#echo "CFLAGS+=-D_DEFAULT_SOURCE" >> opencbm/nibtools/GNU/Makefile
# kernel module: add includes to kernel module source
#sed -i '\!#include <asm/uaccess.h>!s!.*!&\n#include <linux/uaccess.h>\n#include <linux/sched/signal.h>!' opencbm/sys/linux/cbm_module.c
# kernel module: Makefile is needed later
sed -i '\!-rm -f Makefile!d' opencbm/sys/linux/LINUX/Makefile
}
build()
{
cd "${srcdir}/${_repo_dirname}"
CC65_HOME="/usr/share/cc65"
export CC65_HOME
#make -s -w -f LINUX/Makefile opencbm plugin
make -s -w -f LINUX/Makefile opencbm plugin-xum1541 plugin-xu1541
# kernel module: build (optional)
if test "x${build_kernel_module}" != "x"; then
make -s -w -f LINUX/Makefile plugin-xa1541
fi
}
check()
{
cd "${srcdir}/${_repo_dirname}"
}
package()
{
cd "${srcdir}/${_repo_dirname}"
mkdir -p "${pkgdir}/etc/udev/rules.d"
make -s -w -f LINUX/Makefile PREFIX="/usr" MANDIR="/usr/share/man/man1" INFODIR="/usr/share/info" DESTDIR="${pkgdir}/" install install-plugin-xum1541 install-plugin-xu1541
mv "${pkgdir}/etc/opencbm.conf" "${pkgdir}/etc/opencbm.conf.sample"
# Don't overwrite ld.so.conf
rm -f ${pkgdir}/etc/ld.so.conf
# Remove scary warning from /etc/opencbm.conf and don't install both /etc/opencbm.conf.d/ and opencbm_plugin_helper_tools at all
##sed -i "/^;.*/d" ${pkgdir}/etc/opencbm.conf
##rm -rf ${pkgdir}/etc/opencbm.conf.d/
##rm ${pkgdir}/usr/bin/opencbm_plugin_helper_tools
# kernel module: build (optional)
if test "x${build_kernel_module}" != "x"; then
make -s -w -f LINUX/Makefile PREFIX="/usr" MANDIR="/usr/share/man/man1" INFODIR="/usr/share/info" DESTDIR="${pkgdir}/" install install-plugin-xa1541
# kernel module: copy and compress
cp -a "${pkgdir}/lib" "${pkgdir}/usr"
gzip "${pkgdir}/usr/lib/modules/$(uname -r)/kernel/drivers/char/cbm.ko"
# kernel module: clean up left overs
rm -rf "${pkgdir}/lib/modules"
fi
# clean up empty dirs
#rmdir "${pkgdir}/lib"
#rmdir "${pkgdir}/usr/share/info"
find "${pkgdir}" -type d -empty -delete
}
#
# EOF
#
|