diff options
Diffstat (limited to 'community/springlobby')
-rw-r--r-- | community/springlobby/PKGBUILD | 16 |
1 files changed, 3 insertions, 13 deletions
diff --git a/community/springlobby/PKGBUILD b/community/springlobby/PKGBUILD index 68efccb52..eccbec2f5 100644 --- a/community/springlobby/PKGBUILD +++ b/community/springlobby/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 81745 2012-12-28 07:48:09Z svenstaro $ +# $Id: PKGBUILD 82075 2013-01-07 10:25:13Z svenstaro $ # Maintainer: Sven-Hendrik Haase <sh@lutzhaase.com> # Contributor: DuGi <dugi@irc.pl> pkgname=springlobby -pkgver=0.157 +pkgver=0.159 pkgrel=1 pkgdesc="A free cross-platform lobby client for the Spring RTS project." arch=('i686' 'x86_64' 'mips64el') @@ -14,16 +14,11 @@ optdepends=('sdl' 'sdl_sound' 'sdl_mixer') makedepends=('boost' 'asio' 'cmake') install=springlobby.install source=(http://www.springlobby.info/tarballs/${pkgname}-${pkgver}.tar.bz2) -md5sums=('2771aeee0eaff69218d5abc0e9cc18de') +md5sums=('9a8e89c32dd49a51332e446e47dc1be1') build() { cd $srcdir/${pkgname}-$pkgver - # We always use multithreaded boost libs in Arch with no special prefix but lesser - # distros have that prefix so this check fails. - sed -i 's/ .*-mt//g' $srcdir/$pkgname-$pkgver/src/lsl/src/lsl/CMakeLists.txt - sed -i 's/ .*-mt//g' $srcdir/$pkgname-$pkgver/src/lsl/src/lslutils/CMakeLists.txt - cmake . \ -DCMAKE_INSTALL_PREFIX=/usr make @@ -33,11 +28,6 @@ package() { cd $srcdir/${pkgname}-$pkgver make DESTDIR=$pkgdir install - - # these conflict with files in the spring package - rm $pkgdir/usr/include/spring/Downloader/pr-downloader.h - rm $pkgdir/usr/lib/libpr-downloader_static.a - rm $pkgdir/usr/lib/pkgconfig/libspringdownloader.pc } # vim: sw=2:ts=2 et: |