You are not logged in.

#1 2021-09-24 04:47:49

pizzadood
Member
Registered: 2021-09-24
Posts: 1

[REQUEST] sgt-launcher

Hi, can someone please add sgt-launcher to the AUR? As the GitHub repo states, it's "a launcher for Simon Tatham's Portable Puzzle Collection." The collection mentioned already exists as community/puzzles, but when it's installed, it adds every puzzle (there are a lot) to the "Games" category, which quickly clutters the view. This launcher looks like it makes game selection easier by providing each option in a simple list.

The GitHub repo for the launcher is here: https://github.com/bluesabre/sgt-launcher -- I'm not a developer/maintainer of the launcher or the puzzle collection.

Here's the PKGBUILD I wrote for it so far:

# Maintainer: Your Name <youremail@domain.com>
pkgname=sgt-launcher
pkgver=0.2.7
pkgrel=1
pkgdesc="A launcher for Simon Tatham's Portable Puzzle Collection"
arch=(any)
url="https://github.com/bluesabre/sgt-launcher"
license=('GPL-3.0')
groups=()
depends=(puzzles,gir1.2-gdkpixbuf-2.0,gir1.2-glib-2.0,gir1.2-gtk-3.0,python-gi-dev,python3,python3-distutils,python3-distutils-extra,python3-xcffib)
makedepends=()
optdepends=()
provides=()
conflicts=()
replaces=()
backup=()
options=()
install=sudo python3 setup.py install
changelog=https://github.com/bluesabre/sgt-launcher/releases/tag/sgt-launcher-0.2.7
source=($pkgname-$pkgver.tar.gz)
noextract=()
md5sums=() #autofill using updpkgsums

build() {
  cd "$pkgname-$pkgver"

  ./configure --prefix=/usr
  make
}

package() {
  cd "$pkgname-$pkgver"

  make DESTDIR="$pkgdir/" install
}

Sorry if this post has errors, I'm still in the process of learning Arch.

Offline

#2 2021-09-24 07:41:50

loqs
Member
Registered: 2014-03-06
Posts: 17,192

Re: [REQUEST] sgt-launcher

install=sudo python3 setup.py install

Please read PKGBUILD#install

Offline

Board footer

Powered by FluxBB