Initial Commit

This commit is contained in:
2025-09-29 13:45:10 +02:00
commit cd8f2c1226
65 changed files with 1990 additions and 0 deletions

20
glue-git/spira.sh Executable file
View File

@@ -0,0 +1,20 @@
name='glue-git'
version=1.0
release=1
desc='Alignable paste alternative commandline utility.'
architectures=('all')
homepage='https://github.com/Elagoht/Glue'
license=('GPL-3.0-or-later')
maintainer='Furkan Baytekin (Elagoht) <furkanbaytekin@gmail.com>'
provides=('glue')
deps=('python3')
sources=('git+https://github.com/Elagoht/Glue')
checksums=('SKIP')
version() {
cd "$srcdir/Glue"
git-version
}
package() {
install -d "$pkgdir/usr/bin/"
install -Dm755 "Glue/glue" -t "$pkgdir/usr/bin"
}