blob: b9d79276d8bd0effdb250f541b964dbac43983f5 (
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
|
# Maintainer: Daniel Bermond <dbermond@archlinux.org>
pkgname=diamond-editor
pkgver=1.5.1
pkgrel=1
pkgdesc='Compact text editor designed for programmers'
arch=('x86_64')
url='https://www.copperspice.com/'
license=('GPL-2.0-only')
depends=('sh' 'copperspice' 'hunspell')
makedepends=('cmake')
source=("https://github.com/copperspice/diamond/archive/diamond-${pkgver}/${pkgname}-${pkgver}.tar.gz"
'010-diamond-editor-do-not-copy-cs-libs.patch'
'diamond-editor.desktop'
'diamond-editor.sh')
sha256sums=('3502ee9b82793e411fc17c178da212843be0db0e5a3335f1b0c710f019c81529'
'a5c13e576e84922dd7508bb65721839be79f0e82c16729f82cb43a915cec0640'
'1978034fc2878be60254b8b0dca5ed9c7661a60f825375014843b91ec40fc48d'
'16f8c39d44c7dfcf9784a6b0414af4aa266a67de10e17bffb6fd5ea43a95e48a')
prepare() {
patch -d "diamond-diamond-${pkgver}" -Np1 -i "${srcdir}/010-diamond-editor-do-not-copy-cs-libs.patch"
}
build() {
cmake -B build -S "diamond-diamond-${pkgver}" \
-DCMAKE_BUILD_TYPE:STRING='None' \
-DCMAKE_INSTALL_PREFIX:PATH='/opt/diamond-editor' \
-Wno-dev
cmake --build build
}
package() {
DESTDIR="$pkgdir" cmake --install build
install -d -m755 "$pkgdir"{/opt/diamond-editor/{platforms,printerdrivers},/usr/share/pixmaps}
install -D -m755 diamond-editor.sh "${pkgdir}/usr/bin/diamond-editor"
install -D -m644 diamond-editor.desktop -t "${pkgdir}/usr/share/applications"
ln -s ../../../opt/diamond-editor/diamond.png "${pkgdir}/usr/share/pixmaps/diamond-editor.png"
local _dir
local _file
while read -r -d '' _file
do
if [[ "${_file##*/}" =~ ^CsGui.*\.so$ ]]
then
_dir='platforms'
else
_dir='printerdrivers'
fi
ln -s "../../../usr/lib/${_file##*/}" "${pkgdir}/opt/diamond-editor/${_dir}/${_file##*/}"
done < <(find -L /usr/lib -maxdepth 1 -type f -regextype posix-extended -regex '.*/Cs(Gui|PrinterDriver).*\.so$' -print0)
}
|