evolution-packages/srcpkgs/gtkloadspinner/template

25 lines
596 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>"
2023-10-06 00:26:32 +01:00
homepage="https://hectabit.org/centrifuge/hectabit/GtkLoadSpinner"
2023-08-05 21:19:04 +01:00
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
2023-10-06 00:26:32 +01:00
git clone https://hectabit.org/centrifuge/hectabit/GtkLoadSpinner.git
2023-08-05 21:19:04 +01:00
cd GtkLoadSpinner
make
}
do_install() {
echo "Installing..."
vbin ${XBPS_BUILDDIR}/GtkLoadSpinner/loadspinner
}