Skip to content

Commit 6c3f129

Browse files
committed
Fix AUR package dependencies
1 parent 0fa3d26 commit 6c3f129

4 files changed

Lines changed: 35 additions & 3 deletions

File tree

aur/lcl-bin/.SRCINFO

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,9 @@ pkgbase = lcl-bin
55
url = https://github.com/SimonSchubert/LinuxCommandLibrary
66
arch = x86_64
77
license = Apache-2.0
8-
makedepends = unzip
8+
depends = glibc
9+
depends = libgcc
10+
depends = libxcrypt-compat
911
provides = lcl
1012
conflicts = lcl
1113
source = LinuxCommandLibrary-3.7.5-cli-linux-x64.zip::https://github.com/SimonSchubert/LinuxCommandLibrary/releases/download/v3.7.5/LinuxCommandLibrary-3.7.5-cli-linux-x64.zip

aur/lcl-bin/PKGBUILD

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,11 @@ pkgdesc='Linux command reference and cheat sheets for your terminal'
88
arch=('x86_64')
99
url='https://github.com/SimonSchubert/LinuxCommandLibrary'
1010
license=('Apache-2.0')
11-
makedepends=('unzip')
11+
depends=(
12+
'glibc'
13+
'libgcc'
14+
'libxcrypt-compat'
15+
)
1216
provides=('lcl')
1317
conflicts=('lcl')
1418

aur/lcl-gui-bin/.SRCINFO

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,19 @@ pkgbase = lcl-gui-bin
55
url = https://github.com/SimonSchubert/LinuxCommandLibrary
66
arch = x86_64
77
license = Apache-2.0
8+
depends = alsa-lib
9+
depends = bash
10+
depends = fontconfig
11+
depends = glibc
812
depends = hicolor-icon-theme
13+
depends = java-runtime
14+
depends = libglvnd
15+
depends = libstdc++
16+
depends = libx11
17+
depends = libxext
18+
depends = libxi
19+
depends = libxrender
20+
depends = libxtst
921
provides = lcl-gui
1022
conflicts = lcl-gui
1123
options = !strip

aur/lcl-gui-bin/PKGBUILD

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,21 @@ pkgdesc='Linux command reference and cheat sheets - desktop application'
88
arch=('x86_64')
99
url='https://github.com/SimonSchubert/LinuxCommandLibrary'
1010
license=('Apache-2.0')
11-
depends=('hicolor-icon-theme')
11+
depends=(
12+
'alsa-lib'
13+
'bash'
14+
'fontconfig'
15+
'glibc'
16+
'hicolor-icon-theme'
17+
'java-runtime'
18+
'libglvnd'
19+
'libstdc++'
20+
'libx11'
21+
'libxext'
22+
'libxi'
23+
'libxrender'
24+
'libxtst'
25+
)
1226
provides=('lcl-gui')
1327
conflicts=('lcl-gui')
1428
options=('!strip')

0 commit comments

Comments
 (0)