summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 396e687d3fc2a5b4a5916da046bb73113e5cfbd3 (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
118
119
120
121
122
123
124
125
126
127
128
129
130
# Maintainer: Stephan Raabe <mail@ml4w.com>
pkgname='ml4w-hyprland'
pkgver=2.9.6.1
pkgrel=1
pkgdesc="The ML4W Dotfiles for Hyprland - An advanced and full-featured configuration for the dynamic tiling window manager Hyprland including an easy to use installation script for Arch based Linux distributions. "
arch=(any)
url="https://github.com/mylinuxforwork/dotfiles"
license=('GPL')
options=(!strip)
depends=(
    # System
    "rsync"
    "htop"
    "pacman-contrib"
    "sed"
    "vim"
    "neovim"
    "bluez"
    "bluez-utils"
    "wget"
    "unzip"
    "alacritty" 
    "dunst" 
    "starship"
    "figlet" 
    "vlc" 
    "eza" 
    "brightnessctl"
    "gum"
    "man-pages"
    "python-pip" 
    "python-pywal"
    "python-gobject"
    "xarchiver"
    "zip"
    "fuse2"
    "gtk4"
    "libadwaita"
    "xdg-desktop-portal"
    "imagemagick"
    "guvcview"
    "jq"
    "pavucontrol" 
    "polkit-gnome"
    "gvfs"
    "xdg-user-dirs"
    "xclip"
    "trizen"
    "oh-my-posh"
    "aylurs-gtk-shell"
    # Apps
    "wlogout"
    "nwg-look"
    "waypaper"
    "rofi-wayland"
    "fastfetch"
    "blueman"
    "pinta"
    "cliphist"
    "pacseek"
    "nautilus"
    "gnome-text-editor"
    # Fonts
    "noto-fonts" 
    "otf-font-awesome" 
    "ttf-fira-sans" 
    "ttf-fira-code" 
    "ttf-firacode-nerd" 
    # Themes
    "papirus-icon-theme"
    "bibata-cursor-theme" 
    # Hyprland
    "hyprland"
    "hyprpaper"
    "hyprlock"
    "hypridle"
    "hyprshade"
    "xdg-desktop-portal-hyprland" 
    # Network
    "nm-connection-editor"
    "networkmanager"
    "network-manager-applet"
    "qt6ct"
    "stow"
    "zsh"
    "fzf"
    "zsh-completions"
    "waybar" 
    # Screenshot
    "grim" 
    "slurp"
    "grimblast"
)

optdepends=(
    "firefox: Browser"
    "flatpak: Flatpak support"
    "gnome-calculator: Calculator"
    "smile: Emoji Selector"
    "breeze: Breeze Theme"
    "breeze-icons: Breeze Icons"
    "mpv: Media Player" 
    "mission-center: System Monitor"
)

conflicts=('ml4w-hyprland-git')
makedepends=()
source=("${pkgname}::https://github.com/mylinuxforwork/dotfiles/archive/refs/tags/${pkgver}.tar.gz")
md5sums=('SKIP')

package() {

    # share
	install -dm 755 ${pkgdir}/usr/share/ml4w-hyprland
	cp -r ${srcdir}/dotfiles-${pkgver}/share/. ${pkgdir}/usr/share/ml4w-hyprland

    # lib
	install -dm 755 ${pkgdir}/usr/lib/ml4w-hyprland
	cp -r ${srcdir}/dotfiles-${pkgver}/lib/. ${pkgdir}/usr/lib/ml4w-hyprland

    # bin
    install -Dm 755 ${srcdir}/dotfiles-${pkgver}/bin/ml4w-hyprland-setup ${pkgdir}/usr/bin/ml4w-hyprland-setup

    # license
    install -Dm 755 ${srcdir}/dotfiles-${pkgver}/LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE

    # doc
    install -Dm 755 ${srcdir}/dotfiles-${pkgver}/README.md ${pkgdir}/usr/share/doc/${pkgname}/README.md

}