Package Details: quake3-cpma-maps 20180207-1

Git Clone URL: https://aur.archlinux.org/quake3-cpma-maps.git (read-only, click to copy)
Package Base: quake3-cpma-maps
Description: Challenge ProMode Arena (CPMA) Official Mappack (Can be used in any Quake 3 Mod).
Upstream URL: http://playmorepromode.org
Licenses: custom
Conflicts: quake3-cpma
Submitter: Slash
Maintainer: johnnybash
Last Packager: johnnybash
Votes: 15
Popularity: 0.000000
First Submitted: 2008-03-23 00:15 (UTC)
Last Updated: 2020-05-29 11:11 (UTC)

Latest Comments

1 2 3 Next › Last »

johnnybash commented on 2020-05-29 11:12 (UTC)

added (without version bump)

milkii commented on 2020-05-28 23:53 (UTC)

Needs a conflict() with quake3-cpma

nerflad commented on 2018-01-20 09:37 (UTC) (edited on 2018-01-20 10:28 (UTC) by nerflad)

Updated PKGBUILD here https://gist.github.com/nerflad/0fd51e1e145a0d2eed342bd0bd4434d1

kubaxvx commented on 2018-01-19 10:04 (UTC)

Hi, the source url has to be changed to http://playmorepromode.org/files/cpma-mappack-full.zip and this will fix the package.

rpdelaney commented on 2015-07-21 19:29 (UTC)

All right, I'll give it a try.

andreyv commented on 2015-07-18 10:19 (UTC)

Disowning, feel free to adopt.

prg commented on 2013-12-17 16:12 (UTC)

Disowning this package so samlt can adopt it and update it.

samlt commented on 2013-12-17 14:34 (UTC)

generated package did not containt any maps for me, here is a revision for the PKGBUILD which correct this along with a few improvements (build() -> package() and stop using $startdir as it's deprecated): diff --git a/quake3-cpma-maps/PKGBUILD b/quake3-cpma-maps/PKGBUILD index fb57195..1ac6113 100644 --- a/quake3-cpma-maps/PKGBUILD +++ b/quake3-cpma-maps/PKGBUILD @@ -3,7 +3,7 @@ pkgname=quake3-cpma-maps pkgver=20121121 -pkgrel=1 +pkgrel=2 pkgdesc="Challenge ProMode Arena (CPMA) Official Mappack (Can be used in any Quake 3 Mod)." url="http://eu.promode.ru" license=('custom') @@ -13,10 +13,10 @@ source=('http://users.mrlazyinc.com/gaiia/cpma-mappack-full.zip') DLAGENTS=('http::/usr/bin/wget') # server configured to disallow curl -- use wget instead md5sums=('4f170d3a4c184897dbc34f48f2be810d') -build() { +package() { # Create Destination Directories - install -d $startdir/pkg/opt/quake3/baseq3 + install -d $pkgdir/opt/quake3/baseq3 # CPMA Maps - install -m 644 $startdir/src/*.pk3 $startdir/pkg/opt/quake3/baseq3 + install -m 644 $srcdir/*.pk3 $pkgdir/opt/quake3/baseq3 }