summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorGitLab CI2024-04-22 17:39:47 +0000
committerGitLab CI2024-04-22 17:39:47 +0000
commitc8b1db8a81d4706447dca172227c4abf55308301 (patch)
treef62efd95f113a5719cf9d55aba54083654dd3505
parentb8da956ea4177e66f5221fce88a1baf744e0a1e1 (diff)
downloadaur-beautyline.tar.gz
chore: update beautyline
This commit was automatically generated to reflect changes to this package in another repository. The changelog for this package can be found at https://gitlab.com/garuda-linux/pkgbuilds/-/commits/main/beautyline. Logs of the corresponding pipeline run can be found here: https://gitlab.com/garuda-linux/pkgbuilds/-/pipelines/1263297306.
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD12
2 files changed, 11 insertions, 3 deletions
diff --git a/.SRCINFO b/.SRCINFO
index ba02243e80ed..af9a36665d11 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = beautyline
pkgdesc = Outlined icons designed to have unified look and comprehensive coverage with the Candy icon pack (best suited to use with Sweet theme)
pkgver = 20240421
- pkgrel = 1
+ pkgrel = 2
epoch = 1
url = https://gitlab.com/garuda-linux/themes-and-settings/artwork/beautyline
arch = any
diff --git a/PKGBUILD b/PKGBUILD
index 75ceecb9d768..a5639b200b7c 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,7 +3,7 @@
pkgname=beautyline
pkgver=20240421
_commit=2c1dac627be2bfc3f8047df5697fba466564275f
-pkgrel=1
+pkgrel=2
epoch=1
pkgdesc="Outlined icons designed to have unified look and comprehensive coverage with the Candy icon pack (best suited to use with Sweet theme)"
arch=('any')
@@ -15,8 +15,16 @@ source=("git+${url}.git#commit=${_commit}")
sha256sums=('38e869e4e9f69c75de9845c7bcac81c8570f7f2b57899b08ae4298169ca67686')
package() {
+ _move=(actions apps devices index.theme mimetypes places preferences)
+
install -d "${pkgdir}/usr/share/icons/BeautyLine"
- cp -r "${pkgname}/." "${pkgdir}/usr/share/icons/BeautyLine"
+
+ for i in "${_move[@]}"; do
+ cp -r "${srcdir}/${pkgname}/${i}" "${pkgdir}/usr/share/icons/BeautyLine"
+ done
+
find "${pkgdir}/usr" -type f -exec chmod 644 {} \;
find "${pkgdir}/usr" -type d -exec chmod 755 {} \;
+
+ install -Dm644 "${srcdir}/${pkgname}/COPYING" "${pkgdir}/usr/share/licenses/beautyLine/LICENSE"
}