blob: 5dce9abf33834580258da9a36a40b0ded771c580 (
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
|
# Maintainer: Fabio 'Lolix' Loli <fabio.loli@disroot.org> -> https://github.com/FabioLolix
# Maintainer: Daniel Maslowski <info@orangecms.org>
# Contributor: FredBezies
# Contributor: pavbaranov
# Contributor: marcin82
# Contributor: Chad "crossroads1112" Sharp <crossroads1112@riseup.net>
# Contributor: Gabriel Moura <develop@srmoural.com.br>
pkgname=lumina-desktop
pkgver=1.6.2
pkgrel=1
pkgdesc="A Lightweight QT5 Desktop for FreeBSD"
arch=(x86_64 i686 armv7h aarch64)
url="https://lumina-desktop.org/"
license=(BSD)
depends=(poppler-qt5 qt5-x11extras qt5-multimedia)
makedepends=(git qt5-tools qt5-svg)
optdepends=('xorg-xbacklight: required for changing screen brightness'
'alsa-utils: required for adjusting audio volume'
'acpi: required for monitoring battery life'
'numlockx: required for changign state of numlock at login'
'pavucontrol: required for detatched audio mixer'
'fluxmod-styles: A good set of Fluxbox themes to improve the appearence of window decorations'
'network-manager-applet: Manage network connections from panel'
'xterm: Terminal emulator'
'fluxbox: window manager for Lumina DE')
conflicts=(insight-fm)
source=("git+https://github.com/lumina-desktop/lumina.git#tag=v${pkgver}")
sha512sums=('SKIP')
build(){
cd "${srcdir}/lumina"
find "${srcdir}/lumina" -name *.desktop -exec sed -i 's/usr\/local/usr/' {} \;
qmake QMAKE_CFLAGS_ISYSTEM= PREFIX="/usr" LIBPREFIX=/usr/lib QT5LIBDIR=/usr/lib/qt CONFIG+=WITH_I18N L_MANDIR=/usr/share/man L_ETCDIR="/etc"
make
}
package() {
cd "${srcdir}/lumina"
make INSTALL_ROOT="${pkgdir}" install
install -Dm 644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
}
|