evolution-packages/srcpkgs/gtkloadspinner/template

25 lines
580 B
Bash
Raw Normal View History

2023-08-05 21:19:04 +01:00
#!/bin/sh
pkgname=gtkloadspinner
version=1.0
revision=2
short_desc="Ridonculously simple spinner for GTK"
maintainer="Tracker-Friendly <jliwin98@danwin1210.de>"
homepage="https://codeberg.org/EvolutionOS/GtkLoadSpinner"
license="GPL-3.0"
makedepends="make gcc git pkg-config gtk+3-devel"
depends="gtk+3"
do_build() {
echo "Building..."
cd ${XBPS_BUILDDIR}
rm -rf gtkgreet
git clone https://codeberg.org/EvolutionOS/GtkLoadSpinner.git
cd GtkLoadSpinner
make
}
do_install() {
echo "Installing..."
vbin ${XBPS_BUILDDIR}/GtkLoadSpinner/loadspinner
}