Package Details: atari-space-invaders 1.0-2

Git Clone URL: https://aur.archlinux.org/atari-space-invaders.git (read-only, click to copy)
Package Base: atari-space-invaders
Description: The original Space Invaders game for the old Atari 2600 game console
Upstream URL: http://www.atariage.com/software_page.html?SoftwareLabelID=459
Licenses: unknown
Submitter: darose
Maintainer: darose
Last Packager: darose
Votes: 4
Popularity: 0.139001
First Submitted: 2012-12-07 17:11 (UTC)
Last Updated: 2015-07-22 03:08 (UTC)

Dependencies (1)

Required by (0)

Sources (1)

Latest Comments

darose commented on 2013-08-15 05:12 (UTC)

Modernized PKGBUILD. (I.e., to use package() and $pkgdir)

jsst commented on 2013-05-28 15:40 (UTC)

This PKGBUILD should use package() and $pkgdir: diff --git a/PKGBUILD b/PKGBUILD index 105d91c..af08c53 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -12,13 +12,13 @@ depends=(stella) source=('http://www.atariage.com/2600/roms/SpaceInvaders.zip') md5sums=('05200719312f1d2eee36a33e9d5cbe97') -build() { +package() { cd "$srcdir" - install -d $startdir/pkg/usr/share/$pkgname/ + install -d "$pkgdir"/usr/share/$pkgname/ _rom_img_file=SPCINVAD.BIN - install -m644 $_rom_img_file $startdir/pkg/usr/share/$pkgname/ + install -m644 $_rom_img_file "$pkgdir"/usr/share/$pkgname/ echo "#!/bin/sh" > $pkgname echo stella /usr/share/$pkgname/$_rom_img_file >> $pkgname - install -D -m755 $pkgname $startdir/pkg/usr/bin/$pkgname + install -D -m755 $pkgname "$pkgdir"/usr/bin/$pkgname }