forked from pacstall/pacstall-programs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add:
tela-circle-icon-theme
(pacstall#4513)
Co-authored-by: oklopfer <[email protected]>
- Loading branch information
Showing
2 changed files
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
26 changes: 26 additions & 0 deletions
26
packages/tela-circle-icon-theme/tela-circle-icon-theme.pacscript
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
name="tela-circle-icon-theme" | ||
arch=('any') | ||
pkgver="2023-06-25" | ||
pkgdesc="A flat, colorful icon theme" | ||
repology=("project: tela-circle-icon-theme" "repo: aur") | ||
url="https://github.com/vinceliuice/Tela-circle-icon-theme/archive/refs/tags/${pkgver}.zip" | ||
hash="9caaf41608a565a82f1057391d3ac7a4a1e276d9df6fc56367b202ffb8484b48" | ||
maintainer="Herisson <[email protected]>" | ||
gives="${name}" | ||
breaks=("${name}" "${name}-git") | ||
depends=("gtk-update-icon-cache") | ||
build() { | ||
sudo mkdir -p "${pkgdir}/usr/share/${name}" | ||
} | ||
|
||
package() { | ||
for i in elementary links src; do | ||
sudo cp -r "${i}" "${pkgdir}/usr/share/${name}" | ||
done | ||
sudo install -Dm755 install.sh -t "${pkgdir}/usr/share/${name}" | ||
sudo install -Dm644 README.md -t "${pkgdir}/usr/share/${name}" | ||
} | ||
|
||
post_install() { | ||
./usr/share/${name}/install.sh -c -a | ||
} |