mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
22 lines
715 B
Bash
22 lines
715 B
Bash
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
|
# Maintainer: pressh <pressh at gmail dot com>
|
|
# Contributor: Alessio 'mOLOk' Bolognino <themolok@gmail.com>
|
|
|
|
pkgname=gsopcast
|
|
pkgver=0.4.0
|
|
pkgrel=2
|
|
pkgdesc="A GTK front-end of p2p TV sopcast"
|
|
arch=('i686') # sopcast only available on i686
|
|
url="http://code.google.com/p/gsopcast/"
|
|
license=('GPL')
|
|
depends=('sopcast' 'gtk2' 'cairo' 'alsa-lib')
|
|
makedepends=('pkgconfig')
|
|
source=(http://gsopcast.googlecode.com/files/$pkgname-$pkgver.tar.bz2)
|
|
md5sums=('65e4f09d714455df809a58c12a76749f')
|
|
|
|
build() {
|
|
cd $startdir/src/$pkgname-$pkgver
|
|
./configure --prefix=/usr
|
|
make || return 1
|
|
make DESTDIR=$startdir/pkg install || return 1
|
|
}
|