#Packager: George Vlahavas pkgname=geany-themes pkgver=20220810 pkgrel=1gv arch=noarch source=("$pkgname-$pkgver.tar.xz") docs=("readme.md" "install" "copying" "changelog" "authors" "news" "todo" "adding-a-theme.md" "making-a-release.md") url=https://github.com/geany/geany-themes options=('nosrcpack') slackdesc=\ ( #|-----handy-ruler------------------------------------------------------| "geany-themes (A collection of color schemes for Geany)" "Geany-themes is a collection of color schemes for the Geany" "IDE/editor, either written originally by the Geany community or ported" "from color schemes for other editors." ) build() { cd $startdir/src/$pkgname-$pkgver CSDIR=$startdir/pkg/usr/share/geany/colorschemes mkdir -p $CSDIR for SCHEME in `ls colorschemes/*.conf`; do BNAME=`basename "$SCHEME"` cp "$SCHEME" "$CSDIR" done }