-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPKGBUILD
84 lines (74 loc) · 1.59 KB
/
PKGBUILD
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
# Maintainer: Hildigerr Vergaray <Maintainer@YmirSystems.com>
pkgname=('hilde' 'hilde-gtk3')
pkgver=0.1.1
pkgrel=1
pkgdesc="Lightweight Desktop Environment"
arch=('any')
url="https://github.com/hildigerr/HilDE"
license=('Artistic2.0')
source=("hilde::git+${url}")
md5sums=('SKIP')
install=hilde.install
backup=(
etc/X11/xdm/hilde/Xresources
etc/X11/xdm/hilde/Xsession
etc/X11/xdm/hilde/xdm-config
)
makedepends=('git')
# GUI Basics
depends=(
'xorg-server'
'xorg-xdm'
'xorg-xmessage'
'lwm'
'notification-daemon'
'mate-polkit'
)
# Session Startup
depends+=(
'xbindkeys'
'wmctrl'
'xtrlock'
'imagemagick'
'fbautostart'
)
# Default Apps
# File Manager
depends+=(
'gvfs'
)
optdepends=(
'ed: recommended text editor'
'termit-git: recommended terminal emulator'
'sxiv: recommended image viewer'
'speedcrunch: recommended calculator'
'firefox: recommended browser'
'vlc: recommended video player'
'xpad: recommended notepad'
'file-roller: recommended archive manager'
'meld: visual diff and merge utility'
'pdfarranger: pdf manipulation utility'
'gimp: image file manipulation utility'
'sox: sound processing'
)
package_hilde() {
conflicts=(hilde-gtk3)
depends+=(
'lxpanel'
'pcmanfm'
)
_package
}
package_hilde-gtk3() {
conflicts=(hilde)
depends+=(
'lxpanel-gtk3'
'pcmanfm-gtk3'
)
_package
}
_package () {
cd "$srcdir/${pkgbase}"
make DESTDIR="$pkgdir/" install
ln -s "/usr/share/applications/notification-daemon.desktop" "$pkgdir/etc/xdg/autostart/notification-daemon.desktop"
}