blob: f3ec89b4c467285c12b1411a40a71b1f367e94aa (
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
|
# Maintainer: Paulo Fino <somepaulo@duck.com>
pkgname=adwaita-colors-icon-theme-git
_reponame=Adwaita-colors
pkgver=2.4.r0.g4d2e986
pkgrel=1
pkgdesc="Adwaita Colors enhances the Adwaita icon theme by integrating GNOME’s accent color feature. It ensures that your Adwaita icons reflect the same accent color as your GNOME theme."
arch=(any)
url="https://github.com/dpejoh/$_reponame"
license=(GPL3)
depends=("adwaita-icon-theme" "adwaita-icon-theme-legacy")
makedepends=("git")
provides=("${pkgname%-git}")
conflicts=("${pkgname%-git}")
source=("git+$url")
md5sums=(SKIP)
pkgver() {
cd "$srcdir/$_reponame"
git describe --long --tags --abbrev=7 | sed 's/^v//;s/-/.r/;s/-/./'
}
package() {
# Find all directories starting with "Adwaita-" in $_reponame
find $_reponame -type d -name "Adwaita-*" | while read -r dir; do
# Construct the full path to the "index.theme" file
file="$dir/index.theme"
# Check if the file exists and contains the target text
if [ -f "$file" ] && grep -q "Inherits=Adwaita," "$file"; then
# Replace the text using sed
sed -i 's/Inherits=Adwaita,/Inherits=MoreWaita,Adwaita,/g' "$file"
fi
done
local themedir="$pkgdir/usr/share/icons"
install -d "$themedir"
cp -r "$_reponame/Adwaita"* "$themedir"
}
|