Initial import

This commit is contained in:
nashgul 2015-07-14 18:54:34 +02:00
commit 9e7d6c9419
2 changed files with 42 additions and 0 deletions

17
.SRCINFO Normal file
View File

@ -0,0 +1,17 @@
pkgbase = butt
pkgdesc = butt (broadcast using this tool) is an easy to use, multi OS streaming tool
pkgver = 0.1.14
pkgrel = 1
url = http://butt.sourceforge.net/
arch = i686
arch = x86_64
license = GPL2
depends = fltk
depends = libpng12
optdepends = icecast
optdepends = shoutcast
source = http://sourceforge.net/projects/butt/files/butt/butt-0.1.14/butt-0.1.14.tar.gz
sha1sums = f1dfba4f14f5584ef56790734754b4db8fa005a1
pkgname = butt

25
PKGBUILD Normal file
View File

@ -0,0 +1,25 @@
# Maintainer: goll <adrian.goll+aur[at]gmail>
# Contributor: Kosava <kosava@gmail.com>
pkgname=butt
pkgver=0.1.14
pkgrel=1
pkgdesc="butt (broadcast using this tool) is an easy to use, multi OS streaming tool"
arch=('i686' 'x86_64')
license=("GPL2")
url="http://butt.sourceforge.net/"
depends=('fltk' 'libpng12')
optdepends=('icecast' 'shoutcast')
source=("http://sourceforge.net/projects/$pkgname/files/$pkgname/$pkgname-$pkgver/$pkgname-$pkgver.tar.gz")
sha1sums=('f1dfba4f14f5584ef56790734754b4db8fa005a1')
build() {
cd "$pkgname-$pkgver"
./configure --prefix=/usr
make
}
package() {
cd "$pkgname-$pkgver"
make DESTDIR="$pkgdir/" install
}