From 5031987e5b7b0e67d2417db27cdff8ad77690947 Mon Sep 17 00:00:00 2001 From: eshanized Date: Sun, 5 Jan 2025 09:11:09 +0530 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=80=20feat:=20add=20tela=20dracula=20i?= =?UTF-8?q?con=20theme?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- snigdhaos-tela-icon-theme/PKGBUILD | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 snigdhaos-tela-icon-theme/PKGBUILD diff --git a/snigdhaos-tela-icon-theme/PKGBUILD b/snigdhaos-tela-icon-theme/PKGBUILD new file mode 100644 index 00000000..705f7a96 --- /dev/null +++ b/snigdhaos-tela-icon-theme/PKGBUILD @@ -0,0 +1,29 @@ +# Maintainer: RubixDev +# Contributor: Eshan Roy + +_color=dracula +pkgname=snigdhaos-tela-icon-theme-$_color-git +pkgver=2024.09.04.r23.g4af4e7c4 +pkgrel=1 +pkgdesc="A flat colorful design icon theme (only $_color variant)" +arch=('any') +url="https://github.com/vinceliuice/Tela-icon-theme" +license=('GPL3') +depends=() +makedepends=('git' 'gtk-update-icon-cache') +conflicts=("tela-icon-theme") +options=('!strip') +source=("${pkgname%-$_color-git}::git+https://github.com/vinceliuice/Tela-icon-theme.git") +sha256sums=('SKIP') + +pkgver() { + cd "$srcdir/${pkgname%-$_color-git}" + git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g' +} + +package() { + cd "$srcdir/${pkgname%-$_color-git}" + install -d "$pkgdir/usr/share/icons" + ./install.sh -d "$pkgdir/usr/share/icons" $_color +} +