You are not logged in.
im building armyops from aur, but I can't find any where to download aapbupdater1.2.tar.bz2.
Offline
i need that too
Sorry for my english
Offline
i installed aarmy without aapbupdater and it's working
try that:
pkgname=armyops
pkgver=2.5.0
_pkgver=250
pkgrel=2
pkgdesc="America's Army tactical FPS"
url="http://www.americasarmy.com/"
arch=('i686')
depends=(x-server)
source=(http://0day.icculus.org/armyops/${pkgname}${_pkgver}-linux.run)
md5sums=('f0ebbc449aeb6be5fcdf68885d79d57a')build() {
mkdir -p $startdir/pkg/opt/armyops
mkdir -p $startdir/pkg/usr/bin
mkdir -p $startdir/pkg/usr/share/applications
cd $startdir/src
chmod +x ${pkgname}${_pkgver}-linux.run# only extract if neccessary (to speed up builds)
if [ ! -e ${pkgname}${_pkgver}.tar.bz2 ]
then ./${pkgname}${_pkgver}-linux.run --noexec --target $startdir/src
fi
tar -C $startdir/pkg/opt/${pkgname} -j -x -f binaries.tar.bz2
tar -C $startdir/pkg/opt/${pkgname} -j -x -f ${pkgname}${_pkgver}.tar.bz2chown -R root:root $startdir/pkg/opt/${pkgname}
chmod -R go-w $startdir/pkg/opt/${pkgname}echo "[Desktop Entry]
Name=America's Army
Comment=A tactical first-person shooter
Icon=/opt/armyops/Help/AAO.ico
Exec=/usr/bin/armyops
Terminal=false
Type=Application
Categories=Application;Game
StartupNotify=true
" > $startdir/pkg/usr/share/applications/${pkgname}.desktop
chmod 644 $startdir/pkg/usr/share/applications/${pkgname}.desktopecho '#!/bin/sh
cd /opt/armyops/System/
./armyops-bin $*' > $startdir/pkg/usr/bin/${pkgname}
chmod 755 $startdir/pkg/usr/bin/${pkgname}echo '#!/bin/sh
cd /opt/armyops/System/
./server-bin $*' > $startdir/pkg/usr/bin/${pkgname}d
chmod 755 $startdir/pkg/usr/bin/${pkgname}d}
Sorry for my english
Offline