You are not logged in.
# Packager: Dawid Ciezarkiewicz "arael" <arael[at]fov[dot]pl>
pkgname=netpanzer
pkgver=0.1.5
pkgrel=0
pkgdesc="an online multiplayer tactical warfare game data"
url="http://netpanzer.berlios.de"
depends=(sdl_net sdl_mixer sdl_ttf sdl_image physfs wxgtk libxml2 netpanzer-data)
makedepends=()
conflicts=()
replaces=()
backup=()
install=
source=(http://download.berlios.de/netpanzer/netpanzer-${pkgver}.tar.bz2)
md5sums=()
build() {
cd $startdir/src/$pkgname-${pkgver}
./configure --prefix=$startdir/pkg/usr
jam || return 1
jam install
}
# Packager: Dawid Ciezarkiewicz "arael" <arael[at]fov[dot]pl>
pkgname=netpanzer-data
pkgver=0.1.3
pkgrel=0
pkgdesc="an online multiplayer tactical warfare game"
url="http://netpanzer.berlios.de"
depends=(netpanzer)
makedepends=()
conflicts=()
replaces=()
backup=()
install=
source=(http://download.berlios.de/netpanzer/netpanzerdata-${pkgver}.tar.bz2)
md5sums=()
build() {
cd $startdir/src/netpanzerdata-${pkgver}
#./configure --prefix=$startdir/pkg/usr
# jam || return 1
# jam install
mkdir $startdir/pkg/usr
mkdir $startdir/pkg/usr/share/
mkdir $startdir/pkg/usr/share/netpanzer
cp -R sound pics powerups units wads maps $startdir/pkg/usr/share/netpanzer
}
# Packager: Dawid Ciezarkiewicz "arael" <arael[at]fov[dot]pl>
pkgname=physfs
pkgver=1.0.0
pkgrel=0
pkgdesc="Library to provide abstract access to various archives"
url="http://icculus.org/physfs/"
#depends=(?)
makedepends=()
conflicts=()
replaces=()
backup=()
install=
source=(http://icculus.org/physfs/downloads/$pkgname-$pkgver.tar.gz)
md5sums=()
build() {
cd $startdir/src/$pkgname-$pkgver
./configure --prefix=/usr
make || return 1
make prefix=$startdir/pkg/usr install
}
8)
jabber id: arael (at) fov (dot) pl
Offline
physfs already done here: http://bbs.archlinux.org/viewtopic.php?t=3103
I've got to change me algorithm and FIRST add pkg at http://bliss-solutions.org/archlinux/incoming/ and THEN post it on forum.
I wish that pacman would tell me after
$pacman -Ss <pkg>
that this pkg is not dowloadable but avaible on http://bliss-solutions.org/archlinux/incoming/
jabber id: arael (at) fov (dot) pl
Offline
yeah I came here to tell you that I have already done the phyfs
anyways..
NetPANZER ROCKS.
plz if you're a maintainer and read this, add it in the staging or in the games already
btw this is shorter: ftp://ftp.archlinux.org/incoming/
and upload a binary package you've done so you can make the maintainer's life easier
Offline
# Packager: Dawid Ciezarkiewicz "arael" <arael[at]fov[dot]pl>
pkgname=netpanzer
depends=(sdl_net sdl_mixer sdl_ttf sdl_image physfs wxgtk libxml2 netpanzer-data)# Packager: Dawid Ciezarkiewicz "arael" <arael[at]fov[dot]pl>
pkgname=netpanzer-data
depends=(netpanzer)8)
perhaps it's just me but, this sounds like a bit of a problem.
and wouldn't jam be a dependancie also?
Show me a sane man and I will cure him for you." - Carl Gustav Jung (1875-1961)
Offline
Yeah, that's called a circular dependency. That's bad.
I have discovered that all of mans unhappiness derives from only one source, not being able to sit quietly in a room
- Blaise Pascal
Offline
add jam to netpanzer PKGBUILD and remove the dep from the netpanzer-data.
one that gets manually the netpanzer-data package, will know what netpanzer data are [you can also say it in the description]
sth like: "this is the data for netpanzer game. To enjoy this game, also get netpanzer package"
of course, if someone does pacman -S netpanzer HE WILL AUTOMATICALLY GET the data
Offline
# Packager: Dawid Ciezarkiewicz "arael" <arael[at]fov[dot]pl>
pkgname=netpanzer
pkgver=0.1.5
pkgrel=0
pkgdesc="an online multiplayer tactical warfare game data"
url="http://netpanzer.berlios.de"
depends=(jam sdl_net sdl_mixer sdl_ttf sdl_image physfs wxgtk libxml2)
makedepends=()
conflicts=()
replaces=()
backup=()
install=
source=(http://download.berlios.de/netpanzer/netpanzer-${pkgver}.tar.bz2)
md5sums=()
build() {
cd $startdir/src/$pkgname-${pkgver}
./configure --prefix=$startdir/pkg/usr
jam || return 1
jam install
}
sorry
jabber id: arael (at) fov (dot) pl
Offline
also (atleast for me)
the pakage installs the binairy in /usr/bin and data files in /usr/share/netpanzer
netpanzer looks for pics/file and sound/file so it won't find anything.
installing evrything in /usr/share/games/netpanzer would probebly be a beter solution
Show me a sane man and I will cure him for you." - Carl Gustav Jung (1875-1961)
Offline
installing evrything in /usr/share/games/netpanzer would probebly be a beter solution
well yes, and you can do a ln -s to add the netpanzer under /usr/bin
so it is always in PATH
Offline
also (atleast for me)
the pakage installs the binairy in /usr/bin and data files in /usr/share/netpanzer
netpanzer looks for pics/file and sound/file so it won't find anything.
installing evrything in /usr/share/games/netpanzer would probebly be a beter solution
So why those packages are working for me?
jabber id: arael (at) fov (dot) pl
Offline
mkdir $startdir/pkg/usr
mkdir $startdir/pkg/usr/share/
mkdir $startdir/pkg/usr/share/netpanzer
do it this way :
mkdir -p $startdir/pkg/usr/share/netpanzer
Freedom is what i love
Offline
StratoS wrote:also (atleast for me)
the pakage installs the binairy in /usr/bin and data files in /usr/share/netpanzer
netpanzer looks for pics/file and sound/file so it won't find anything.
installing evrything in /usr/share/games/netpanzer would probebly be a beter solutionSo why those packages are working for me?
i dunno, i'm not psychic.
i just noted that it din't work for me.
Show me a sane man and I will cure him for you." - Carl Gustav Jung (1875-1961)
Offline
[quote="Blaasvis"
do it this way :
mkdir -p $startdir/pkg/usr/share/netpanzer
thx in adv:)
jabber id: arael (at) fov (dot) pl
Offline
arael wrote:StratoS wrote:also (atleast for me)
the pakage installs the binairy in /usr/bin and data files in /usr/share/netpanzer
netpanzer looks for pics/file and sound/file so it won't find anything.
installing evrything in /usr/share/games/netpanzer would probebly be a beter solutionSo why those packages are working for me?
i dunno, i'm not psychic.
i just noted that it din't work for me.
anybody else got this problem?
jabber id: arael (at) fov (dot) pl
Offline
will this excellent game reach TUR/staging or even testing??
Offline