blob: f5211fb2ec0f257c275ed35845849baf3fd80c5c (
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
|
# Maintainer: Dimitris Kiziridis <ragouel at outlook dot com>
# Contributor: Martin C. Doege <mdoege at compuserve dot com>
# Contributor: Anton Bazhenov <anton.bazhenov at gmail>
# Contributor: Firmicus <firmicus@gmx.net>
pkgname=sunclock
pkgver=3.57
pkgrel=1
pkgdesc="An astronomical world map that shows day and night and the Sun and Moon positions"
arch=('i686' 'x86_64')
url="https://www.spinnaker.de/debian/sunclock.html"
license=('GPL')
depends=('libjpeg-turbo'
'libpng'
'libxpm')
makedepends=('imake' 'tar' 'gendesk')
source=("$pkgname-$pkgver.tar.gz::https://www.spinnaker.de/debian/sunclock_${pkgver}.orig.tar.gz"
"disable_zlib.patch")
sha256sums=('f3b3499b4a84c7a31411d2a9043e2d9171b745ec29a991ef9930ce582b9d41ab'
'SKIP')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
# Apply a Debian patch to disable zlib
patch -N ${srcdir}/${pkgname}-${pkgver}/Imakefile ${srcdir}/disable_zlib.patch
# Fix path to 'emx' binary
sed -i "s_/share/sunclock/bin_/bin_" Imakefile
xmkmf
make
gendesk -f -n --pkgname "${pkgname}" --pkgdesc "${pkgdesc}" \
--exec="${pkgname}" --categories=Education\;Science\;Astronomy --icon "${pkgname}"
}
package() {
cd "${srcdir}/${pkgname}-${pkgver}"
# Install program files
make DESTDIR="${pkgdir}" \
BINDIR=/usr/bin \
EMXBINDIR=/usr/bin \
SHAREDIR=/usr/share/${pkgname} \
MANDIR=/usr/share/man/man1 install
# Install data files
install -Dm644 README "$pkgdir/usr/share/doc/sunclock/README"
# Install a desktop entry
install -Dm644 wm_icons/sunclock2.xpm "${pkgdir}/usr/share/pixmaps/${pkgname}.xpm"
install -Dm644 ${pkgname}.desktop "${pkgdir}/usr/share/applications/${pkgname}.desktop"
}
|