diff --git a/design/Melawy/icon-theme/.gitignore b/design/Melawy/icon-theme/.gitignore new file mode 100644 index 0000000..641b6d6 --- /dev/null +++ b/design/Melawy/icon-theme/.gitignore @@ -0,0 +1,4 @@ +*.tar.* +pkg/ +src/ +/icon-theme diff --git a/design/Melawy/icon-theme/00_make.sh b/design/Melawy/icon-theme/00_make.sh new file mode 100755 index 0000000..d55d30b --- /dev/null +++ b/design/Melawy/icon-theme/00_make.sh @@ -0,0 +1,3 @@ +#!/bin/bash + +makepkg --syncdeps --asdeps --needed --noconfirm --clean --cleanbuild --force diff --git a/design/Melawy/icon-theme/01_sign.sh b/design/Melawy/icon-theme/01_sign.sh new file mode 100755 index 0000000..dc5c85d --- /dev/null +++ b/design/Melawy/icon-theme/01_sign.sh @@ -0,0 +1,17 @@ +#!/bin/bash + +for i in *.pkg.tar.zst; +do + echo "Удаление подписи $i.sig" + rm -f $i.sig + echo "Добавление подписи $i.sig" + gpg --detach-sign --local-user 95F48000540A4DB146583A47C49B5E77FD80302D --output "$i.sig" "$i" +done + +for i in *.pkg.tar.xz; +do + echo "Удаление подписи $i.sig" + rm -f $i.sig + echo "Добавление подписи $i.sig" + gpg --detach-sign --local-user 95F48000540A4DB146583A47C49B5E77FD80302D --output "$i.sig" "$i" +done \ No newline at end of file diff --git a/design/Melawy/icon-theme/PKGBUILD b/design/Melawy/icon-theme/PKGBUILD new file mode 100644 index 0000000..d34cc8f --- /dev/null +++ b/design/Melawy/icon-theme/PKGBUILD @@ -0,0 +1,48 @@ +# Maintainer: Valeria Fadeeva + +_gitname="$(basename $(pwd))" +pkgname=("melawy-$_gitname") +pkgver=1.4 +pkgrel=1 +pkgdesc="$(head -n 2 README.md | tail -n 1)" +url="https://github.com/Melawy/$_gitname" +arch=("any") +license=("AGPL3") +depends=("gtk-update-icon-cache" "hicolor-icon-theme") +optdepends=() +makedepends=("git") +options=("!strip") +backup=() +provides=("${pkgname}") +conflicts=("${pkgname}") +source=("git+$url.git") +sha256sums=("SKIP") +validpgpkeys=('95F48000540A4DB146583A47C49B5E77FD80302D') + +# pkgver() { +# cd "$srcdir/Melawy-icon-theme" +# git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g' +# } + +# pkgver() { +# cd "$srcdir/$_gitname" +# printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)" +# } + +pkgver() { + cd "$srcdir/$_gitname" + printf "1.%s" "$(git rev-list --count HEAD)" +} + +prepare() { + cd "$srcdir/icon-theme" + + # Disable running gtk-update-icon-cache + sed -i '/gtk-update-icon-cache/d' install.sh +} + +package() { + cd "$srcdir/icon-theme" + install -d "$pkgdir/usr/share/icons" + ./install.sh -t all -d "$pkgdir/usr/share/icons" +} diff --git a/design/Melawy/icon-theme/README.md b/design/Melawy/icon-theme/README.md new file mode 100644 index 0000000..1fab4b1 --- /dev/null +++ b/design/Melawy/icon-theme/README.md @@ -0,0 +1,11 @@ +# melawy-icon-theme +Icon theme for Melawy Linux + +### Donate +[Tinkoff](https://www.tinkoff.ru/rm/fadeeva.valeriya96/9bLRi79066) + +[YooMoney](https://yoomoney.ru/to/4100115921160758) + +[Qiwi](https://qiwi.com/n/VALERIAFADEEVA) + +Etherium 0x981FBf878fe451BDB83BEaF68078394d4B13213f diff --git a/design/Melawy/icon-theme_local/.gitignore b/design/Melawy/icon-theme_local/.gitignore new file mode 100644 index 0000000..716bb31 --- /dev/null +++ b/design/Melawy/icon-theme_local/.gitignore @@ -0,0 +1,4 @@ +*.tar.* +pkg/ +src/ +/color-scheme-konsole diff --git a/design/Melawy/icon-theme_local/PKGBUILD b/design/Melawy/icon-theme_local/PKGBUILD new file mode 100644 index 0000000..91106f4 --- /dev/null +++ b/design/Melawy/icon-theme_local/PKGBUILD @@ -0,0 +1,37 @@ +# Maintainer: Valeria Fadeeva + +pkgname=('melawy-icon-theme') +pkgbase=melawy-icon-theme +pkgver=2023.03.28.r12.g87923b3 +pkgrel=1 +arch=('any') +license=('AGPL3') +makedepends=('git') +options=('!strip') +source=('file:///disk/themes/_ICONS/Melawy-icon-theme.tar.xz') +sha256sums=('SKIP') + +pkgver() { + cd "$srcdir/Melawy-icon-theme" + git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g' +} + +prepare() { + cd "$srcdir/Melawy-icon-theme" + + # Disable running gtk-update-icon-cache + sed -i '/gtk-update-icon-cache/d' install.sh +} + +package_melawy-icon-theme() { + pkgdesc="Modern and clean icon theme for Linux" + url="https://github.com/Melawy" + depends=('gtk-update-icon-cache' 'hicolor-icon-theme') + provides=("${pkgname%-git}") + conflicts=("${pkgname%-git}") + + cd "$srcdir/Melawy-icon-theme" + install -d "$pkgdir/usr/share/icons" + ./install.sh -t all -d "$pkgdir/usr/share/icons" + #./install.sh -d "$pkgdir/usr/share/icons" +} diff --git a/design/Melawy/icon-theme_local/PKGBUILD_orig b/design/Melawy/icon-theme_local/PKGBUILD_orig new file mode 100644 index 0000000..46f5c56 --- /dev/null +++ b/design/Melawy/icon-theme_local/PKGBUILD_orig @@ -0,0 +1,47 @@ +# Maintainer: Mark Wagie +pkgname=('colloid-icon-theme-git' 'colloid-cursors-git') +pkgbase=colloid-icon-theme-git +pkgver=2023.03.28.r12.g87923b3 +pkgrel=1 +arch=('any') +license=('GPL3') +makedepends=('git') +options=('!strip') +source=('git+https://github.com/vinceliuice/Colloid-icon-theme.git') +sha256sums=('SKIP') + +pkgver() { + cd "$srcdir/Colloid-icon-theme" + git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g' +} + +prepare() { + cd "$srcdir/Colloid-icon-theme" + + # Disable running gtk-update-icon-cache + sed -i '/gtk-update-icon-cache/d' install.sh +} + +package_colloid-icon-theme-git() { + pkgdesc="Modern and clean icon theme for Linux" + url="https://www.pling.com/p/1661983" + depends=('gtk-update-icon-cache' 'hicolor-icon-theme') + provides=("${pkgname%-git}") + conflicts=("${pkgname%-git}") + + cd "$srcdir/Colloid-icon-theme" + install -d "$pkgdir/usr/share/icons" + ./install.sh -t all -d "$pkgdir/usr/share/icons" +} + +package_colloid-cursors-git() { + pkgdesc="An x-cursor theme inspired by Colloid theme and based on capitaine-cursors" + url="https://www.pling.com/p/1831077" + provides=("${pkgname%-git}") + conflicts=("${pkgname%-git}") + + cd "$srcdir/Colloid-icon-theme/cursors" + install -d "$pkgdir"/usr/share/icons/Colloid{-cursors,-dark-cursors} + cp -r dist/* "$pkgdir/usr/share/icons/Colloid-cursors/" + cp -r dist-dark/* "$pkgdir/usr/share/icons/Colloid-dark-cursors/" +} diff --git a/design/Melawy/icon-theme_local/PKGBUILD_with_cursor b/design/Melawy/icon-theme_local/PKGBUILD_with_cursor new file mode 100644 index 0000000..9ddfa59 --- /dev/null +++ b/design/Melawy/icon-theme_local/PKGBUILD_with_cursor @@ -0,0 +1,48 @@ +# Maintainer: Valeria Fadeeva + +pkgname=('melawy-icon-theme' 'melawy-cursors') +pkgbase=melawy-icon-theme +pkgver=2023.03.28.r12.g87923b3 +pkgrel=1 +arch=('any') +license=('AGPL3') +makedepends=('git') +options=('!strip') +source=('file:///disk/themes/_ICONS/Melawy-icon-theme.tar.gz') +sha256sums=('SKIP') + +pkgver() { + cd "$srcdir/Melawy-icon-theme" + git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g' +} + +prepare() { + cd "$srcdir/Melawy-icon-theme" + + # Disable running gtk-update-icon-cache + sed -i '/gtk-update-icon-cache/d' install.sh +} + +package_melawy-icon-theme() { + pkgdesc="Modern and clean icon theme for Linux" + url="https://github.com/Melawy" + depends=('gtk-update-icon-cache' 'hicolor-icon-theme') + provides=("${pkgname%-git}") + conflicts=("${pkgname%-git}") + + cd "$srcdir/Melawy-icon-theme" + install -d "$pkgdir/usr/share/icons" + ./install.sh -t all -d "$pkgdir/usr/share/icons" +} + +package_melawy-cursors() { + pkgdesc="An x-cursor theme inspired by Colloid theme and based on capitaine-cursors" + url="https://github.com/Melawy" + provides=("${pkgname%-git}") + conflicts=("${pkgname%-git}") + + cd "$srcdir/Melawy-icon-theme/cursors" + install -d "$pkgdir"/usr/share/icons/Melawy{-cursors,-dark-cursors} + cp -r dist/* "$pkgdir/usr/share/icons/Melawy-cursors/" + cp -r dist-dark/* "$pkgdir/usr/share/icons/Melawy-dark-cursors/" +} diff --git a/design/Melawy/icon-theme_local/make.sh b/design/Melawy/icon-theme_local/make.sh new file mode 100755 index 0000000..d55d30b --- /dev/null +++ b/design/Melawy/icon-theme_local/make.sh @@ -0,0 +1,3 @@ +#!/bin/bash + +makepkg --syncdeps --asdeps --needed --noconfirm --clean --cleanbuild --force diff --git a/design/Melawy/purple-dark-cursors/.gitignore b/design/Melawy/purple-dark-cursors/.gitignore new file mode 100644 index 0000000..e436138 --- /dev/null +++ b/design/Melawy/purple-dark-cursors/.gitignore @@ -0,0 +1,4 @@ +*.tar.* +pkg/ +src/ +/purple-dark-cursors diff --git a/design/Melawy/purple-dark-cursors/00_make.sh b/design/Melawy/purple-dark-cursors/00_make.sh new file mode 100755 index 0000000..d55d30b --- /dev/null +++ b/design/Melawy/purple-dark-cursors/00_make.sh @@ -0,0 +1,3 @@ +#!/bin/bash + +makepkg --syncdeps --asdeps --needed --noconfirm --clean --cleanbuild --force diff --git a/design/Melawy/purple-dark-cursors/01_sign.sh b/design/Melawy/purple-dark-cursors/01_sign.sh new file mode 100755 index 0000000..dc5c85d --- /dev/null +++ b/design/Melawy/purple-dark-cursors/01_sign.sh @@ -0,0 +1,17 @@ +#!/bin/bash + +for i in *.pkg.tar.zst; +do + echo "Удаление подписи $i.sig" + rm -f $i.sig + echo "Добавление подписи $i.sig" + gpg --detach-sign --local-user 95F48000540A4DB146583A47C49B5E77FD80302D --output "$i.sig" "$i" +done + +for i in *.pkg.tar.xz; +do + echo "Удаление подписи $i.sig" + rm -f $i.sig + echo "Добавление подписи $i.sig" + gpg --detach-sign --local-user 95F48000540A4DB146583A47C49B5E77FD80302D --output "$i.sig" "$i" +done \ No newline at end of file diff --git a/design/Melawy/purple-dark-cursors/PKGBUILD b/design/Melawy/purple-dark-cursors/PKGBUILD new file mode 100644 index 0000000..0a9691d --- /dev/null +++ b/design/Melawy/purple-dark-cursors/PKGBUILD @@ -0,0 +1,40 @@ +# Maintainer: Valeria Fadeeva + +_gitname="$(basename $(pwd))" +pkgname=("melawy-$_gitname") +pkgver=1.1 +pkgrel=1 +pkgdesc="$(head -n 2 README.md | tail -n 1)" +url="https://github.com/Melawy/$_gitname" +arch=("any") +license=("AGPL3") +depends=() +optdepends=() +makedepends=("git") +options=("!strip") +backup=() +provides=("${pkgname}") +conflicts=("${pkgname}") +source=("git+$url.git") +sha256sums=("SKIP") +validpgpkeys=('95F48000540A4DB146583A47C49B5E77FD80302D') + +# pkgver() { +# cd "$srcdir/Melawy-icon-theme" +# git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g' +# } + +# pkgver() { +# cd "$srcdir/$_gitname" +# printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)" +# } + +pkgver() { + cd "$srcdir/$_gitname" + printf "1.%s" "$(git rev-list --count HEAD)" +} + +package() { + install -d "$pkgdir/usr/share/icons" + cp -r "$srcdir/$_gitname/Melawy-$_gitname" "$pkgdir/usr/share/icons/" +} diff --git a/design/Melawy/purple-dark-cursors/README.md b/design/Melawy/purple-dark-cursors/README.md new file mode 100644 index 0000000..1675061 --- /dev/null +++ b/design/Melawy/purple-dark-cursors/README.md @@ -0,0 +1,15 @@ +# melawy-purple-dark-cursors +Purple dark cursors theme for Melawy Linux + +Building the Bridge Icon set from the Inkscape SVG: + +Dependencies inkscape and xorg-xcursorgen for building. + +### Donate +[Tinkoff](https://www.tinkoff.ru/rm/fadeeva.valeriya96/9bLRi79066) + +[YooMoney](https://yoomoney.ru/to/4100115921160758) + +[Qiwi](https://qiwi.com/n/VALERIAFADEEVA) + +Etherium 0x981FBf878fe451BDB83BEaF68078394d4B13213f diff --git a/design/Melawy/purple-light-cursors/.gitignore b/design/Melawy/purple-light-cursors/.gitignore new file mode 100644 index 0000000..b6754c4 --- /dev/null +++ b/design/Melawy/purple-light-cursors/.gitignore @@ -0,0 +1,4 @@ +*.tar.* +pkg/ +src/ +/purple-light-cursors diff --git a/design/Melawy/purple-light-cursors/00_make.sh b/design/Melawy/purple-light-cursors/00_make.sh new file mode 100755 index 0000000..d55d30b --- /dev/null +++ b/design/Melawy/purple-light-cursors/00_make.sh @@ -0,0 +1,3 @@ +#!/bin/bash + +makepkg --syncdeps --asdeps --needed --noconfirm --clean --cleanbuild --force diff --git a/design/Melawy/purple-light-cursors/01_sign.sh b/design/Melawy/purple-light-cursors/01_sign.sh new file mode 100755 index 0000000..dc5c85d --- /dev/null +++ b/design/Melawy/purple-light-cursors/01_sign.sh @@ -0,0 +1,17 @@ +#!/bin/bash + +for i in *.pkg.tar.zst; +do + echo "Удаление подписи $i.sig" + rm -f $i.sig + echo "Добавление подписи $i.sig" + gpg --detach-sign --local-user 95F48000540A4DB146583A47C49B5E77FD80302D --output "$i.sig" "$i" +done + +for i in *.pkg.tar.xz; +do + echo "Удаление подписи $i.sig" + rm -f $i.sig + echo "Добавление подписи $i.sig" + gpg --detach-sign --local-user 95F48000540A4DB146583A47C49B5E77FD80302D --output "$i.sig" "$i" +done \ No newline at end of file diff --git a/design/Melawy/purple-light-cursors/PKGBUILD b/design/Melawy/purple-light-cursors/PKGBUILD new file mode 100644 index 0000000..0a9691d --- /dev/null +++ b/design/Melawy/purple-light-cursors/PKGBUILD @@ -0,0 +1,40 @@ +# Maintainer: Valeria Fadeeva + +_gitname="$(basename $(pwd))" +pkgname=("melawy-$_gitname") +pkgver=1.1 +pkgrel=1 +pkgdesc="$(head -n 2 README.md | tail -n 1)" +url="https://github.com/Melawy/$_gitname" +arch=("any") +license=("AGPL3") +depends=() +optdepends=() +makedepends=("git") +options=("!strip") +backup=() +provides=("${pkgname}") +conflicts=("${pkgname}") +source=("git+$url.git") +sha256sums=("SKIP") +validpgpkeys=('95F48000540A4DB146583A47C49B5E77FD80302D') + +# pkgver() { +# cd "$srcdir/Melawy-icon-theme" +# git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g' +# } + +# pkgver() { +# cd "$srcdir/$_gitname" +# printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)" +# } + +pkgver() { + cd "$srcdir/$_gitname" + printf "1.%s" "$(git rev-list --count HEAD)" +} + +package() { + install -d "$pkgdir/usr/share/icons" + cp -r "$srcdir/$_gitname/Melawy-$_gitname" "$pkgdir/usr/share/icons/" +} diff --git a/design/Melawy/purple-light-cursors/README.md b/design/Melawy/purple-light-cursors/README.md new file mode 100644 index 0000000..57ca5d5 --- /dev/null +++ b/design/Melawy/purple-light-cursors/README.md @@ -0,0 +1,15 @@ +# melawy-purple-light-cursors +Purple light cursors theme for Melawy Linux + +Building the Bridge Icon set from the Inkscape SVG: + +Dependencies inkscape and xorg-xcursorgen for building. + +### Donate +[Tinkoff](https://www.tinkoff.ru/rm/fadeeva.valeriya96/9bLRi79066) + +[YooMoney](https://yoomoney.ru/to/4100115921160758) + +[Qiwi](https://qiwi.com/n/VALERIAFADEEVA) + +Etherium 0x981FBf878fe451BDB83BEaF68078394d4B13213f