summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndré Fabian Silva Delgado <emulatorman@lavabit.com>2013-04-27 13:56:49 -0300
committerAndré Fabian Silva Delgado <emulatorman@lavabit.com>2013-04-27 13:56:49 -0300
commit63b03ec6cac8d830c2694d0143d9761e50e695b5 (patch)
treed3a8f89b0dc69aef8c09935e2b6d69cca02a766d
parentf3154e62fe4ced9e0ba9449c806912c39516cc0c (diff)
parent67f6740409e8b7a966612d1d17cb09a1c5f2344b (diff)
downloadabslibre-63b03ec6cac8d830c2694d0143d9761e50e695b5.tar.gz
abslibre-63b03ec6cac8d830c2694d0143d9761e50e695b5.tar.bz2
abslibre-63b03ec6cac8d830c2694d0143d9761e50e695b5.zip
Merge branch 'master' of ssh://parabolagnulinux.org:1863/srv/git/abslibre
-rw-r--r--libre/gst-plugins-bad-libre/PKGBUILD4
-rw-r--r--pcr/oggfwd/PKGBUILD21
-rw-r--r--pcr/pngcrush/PKGBUILD26
-rw-r--r--pcr/sltv/PKGBUILD5
-rw-r--r--pcr/sltv/PKGBUILD.new32
-rw-r--r--~lukeshu/pngcrush/LICENSE42
-rw-r--r--~lukeshu/pngcrush/PKGBUILD30
7 files changed, 83 insertions, 77 deletions
diff --git a/libre/gst-plugins-bad-libre/PKGBUILD b/libre/gst-plugins-bad-libre/PKGBUILD
index a1a0d68b0..59f49ee5d 100644
--- a/libre/gst-plugins-bad-libre/PKGBUILD
+++ b/libre/gst-plugins-bad-libre/PKGBUILD
@@ -4,7 +4,7 @@
pkgbase=gst-plugins-bad
pkgname=gst-plugins-bad-libre
-pkgver=1.0.6
+pkgver=1.0.7
pkgrel=1
pkgdesc='GStreamer Multimedia Framework Bad Plugins, without nonfree faac support'
arch=(
@@ -58,7 +58,7 @@ source=(
"$url/src/$pkgbase/$pkgbase-$pkgver.tar.xz"
)
sha256sums=(
- 92130899d0b78b71f1551cada9b10b550e91506c2d7b8b748e5cc18a620d302d
+ 5f49e6353fdc855834b5beb054b3a47ef5fa558006c7eda6d2ec07b36315c2ab
)
build() {
diff --git a/pcr/oggfwd/PKGBUILD b/pcr/oggfwd/PKGBUILD
new file mode 100644
index 000000000..5dd9e4680
--- /dev/null
+++ b/pcr/oggfwd/PKGBUILD
@@ -0,0 +1,21 @@
+# Contributor: farid abdelnour < farid at atelier-labs.org>
+
+pkgname=oggfwd
+pkgver=0.2
+pkgrel=2
+pkgdesc="pipes an ogg stream to an icecast server"
+arch=('i686' 'x86_64')
+url="http://v2v.cc/~j/oggfwd/"
+license=('GPL')
+source=(http://www.v2v.cc/~j/ffmpeg2theora/oggfwd/oggfwd.tar.gz)
+md5sums=('8402d26a5a8ff318ef6ea01ec146c8cc')
+depends=(libshout)
+
+build () {
+ cd $srcdir/$pkgname
+ make clean || return 1
+ make oggfwd || return 1
+ install -d $pkgdir/usr/bin || return 1
+ install -m755 oggfwd $pkgdir/usr/bin/oggfwd || return 1
+}
+
diff --git a/pcr/pngcrush/PKGBUILD b/pcr/pngcrush/PKGBUILD
new file mode 100644
index 000000000..a4ac8b5cb
--- /dev/null
+++ b/pcr/pngcrush/PKGBUILD
@@ -0,0 +1,26 @@
+# Maintainer: Luke Shumaker <lukeshu@sbcglobal.net>
+
+pkgname=pngcrush
+pkgver=1.7.58
+pkgrel=1
+pkgdesc="A tool for optimizing the compression of PNG files"
+arch=('i686' 'x86_64' 'mips64el')
+url="http://pmt.sourceforge.net/"
+license=('custom')
+depends=('libpng' 'zlib')
+source=(http://downloads.sourceforge.net/pmt/$pkgname-$pkgver-nolib.tar.xz)
+
+build() {
+ cd "$srcdir"/$pkgname-$pkgver-nolib
+ sed -n '10,17s/^\s*//p' cexcept.h > LICENSE.cexcept.txt
+ sed -rn '97,142s/ \* ?//p' pngcrush.c > LICENSE.pngcrush.txt
+ make
+}
+
+package() {
+ cd "$srcdir"/$pkgname-$pkgver-nolib
+ install -Dm755 $pkgname "$pkgdir"/usr/bin/$pkgname
+ install -Dm644 LICENSE.cexcept.txt "$pkgdir"/usr/share/licenses/$pkgname/cexcept.txt
+ install -Dm644 LICENSE.pngcrush.txt "$pkgdir"/usr/share/licenses/$pkgname/pngcrush.txt
+}
+md5sums=('aa09aa8a65999ba522e5735ed0ad6a1a')
diff --git a/pcr/sltv/PKGBUILD b/pcr/sltv/PKGBUILD
index afb4990e5..0669c5110 100644
--- a/pcr/sltv/PKGBUILD
+++ b/pcr/sltv/PKGBUILD
@@ -3,7 +3,7 @@
# Contributor: Wille Marcel <wille at wille.blog.br>
pkgname=sltv
-pkgver=0.92
+pkgver=0.91
pkgrel=1
pkgdesc="An audio and video streamer that receives streams from several sources (V4L2, Firewire, ALSA, Pulseaudio, files...) and sends a stream using Icecast or to files (Vorbis+Theora)."
arch=('any')
@@ -15,11 +15,10 @@ source=("http://sltv.holoscopio.com/$pkgname-$pkgver.tar.gz")
md5sums=(b5f9b2d7102ca0a4068ebe1783699764)
build() {
-
cd "$srcdir/$pkgname-$pkgver"
# Python2 fix
- sed -i "s_python_&2_" src/sltv.in
+ sed -i "s#python#python2#" src/sltv.in
./configure --prefix=/usr
make
diff --git a/pcr/sltv/PKGBUILD.new b/pcr/sltv/PKGBUILD.new
new file mode 100644
index 000000000..9a3f6b6a8
--- /dev/null
+++ b/pcr/sltv/PKGBUILD.new
@@ -0,0 +1,32 @@
+# Maintainer: farid abdelnour <farid at archlinux-br.org>
+# Contributor: SpepS <dreamspepser at yahoo dot it>
+# Contributor: Wille Marcel <wille at wille.blog.br>
+
+pkgname=sltv
+pkgver=0.92
+pkgrel=1
+pkgdesc="An audio and video streamer that receives streams from several sources (V4L2, Firewire, ALSA, Pulseaudio, files...) and sends a stream using Icecast or to files (Vorbis+Theora)."
+arch=('any')
+url="http://sltv.holoscopio.com"
+license=('GPL')
+depends=('pygtk' 'python2-configobj' 'gstreamer0.10-python' 'gstreamer-hplugins' 'gstreamer0.10-bad' 'gstreamer0.10-good' 'gstreamer0.10-ffmpeg' 'python2' 'gstreamer0.10' 'gstreamer0.10-base' )
+install="$pkgname.install"
+source=("http://sltv.holoscopio.com/$pkgname-$pkgver.tar.gz")
+md5sums=(a1dc9a09b29b817e74f87d673aff2310)
+
+build() {
+ cd "$srcdir/$pkgname-$pkgver"
+
+ # Python2 fix
+ sed -i "s#python#python2#" src/landell.in
+
+ ./configure --prefix=/usr
+ make
+}
+
+package() {
+
+ cd "$srcdir/$pkgname-$pkgver"
+
+ make DESTDIR="$pkgdir/" install
+}
diff --git a/~lukeshu/pngcrush/LICENSE b/~lukeshu/pngcrush/LICENSE
deleted file mode 100644
index 3412dd04e..000000000
--- a/~lukeshu/pngcrush/LICENSE
+++ /dev/null
@@ -1,42 +0,0 @@
-
-NOTICES
-
-If you have modified this source, you may insert additional notices
-immediately after this sentence.
-
-COPYRIGHT:
-
-Copyright (C) 1998-2002,2006-2009 Glenn Randers-Pehrson
- (glennrp at users.sf.net)
-Copyright (C) 2005 Greg Roelofs
-
-DISCLAIMERS:
-
-The pngcrush computer program is supplied "AS IS". The Author disclaims all
-warranties, expressed or implied, including, without limitation, the
-warranties of merchantability and of fitness for any purpose. The
-Author assumes no liability for direct, indirect, incidental, special,
-exemplary, or consequential damages, which may result from the use of
-the computer program, even if advised of the possibility of such damage.
-There is no warranty against interference with your enjoyment of the
-computer program or against infringement. There is no warranty that my
-efforts or the computer program will fulfill any of your particular purposes
-or needs. This computer program is provided with all faults, and the entire
-risk of satisfactory quality, performance, accuracy, and effort is with
-the user.
-
-LICENSE:
-
-Permission is hereby irrevocably granted to everyone to use, copy, modify,
-and distribute this source code, or portions hereof, or executable programs
-compiled from it, for any purpose, without payment of any fee, subject to
-the following restrictions:
-
-1. The origin of this source code must not be misrepresented.
-
-2. Altered versions must be plainly marked as such and must not be
- misrepresented as being the original source.
-
-3. This Copyright notice, disclaimer, and license may not be removed
- or altered from any source or altered source distribution.
-
diff --git a/~lukeshu/pngcrush/PKGBUILD b/~lukeshu/pngcrush/PKGBUILD
deleted file mode 100644
index e3b477086..000000000
--- a/~lukeshu/pngcrush/PKGBUILD
+++ /dev/null
@@ -1,30 +0,0 @@
-# Contributor: Anton Bazhenov <anton.bazhenov at gmail>
-# Contributer: HuntXu <huntxu@live.cn>
-# Maintainer: Stefan Husmann <stefan-husmann@t-online.de>
-
-pkgname=pngcrush
-pkgver=1.7.15
-pkgrel=1
-pkgdesc="A tool for optimizing the compression of PNG files"
-arch=('i686' 'x86_64')
-url="http://pmt.sourceforge.net/"
-license=('custom')
-depends=('glibc')
-source=(http://downloads.sourceforge.net/pmt/$pkgname-$pkgver.tar.xz
- LICENSE)
-md5sums=('c21cf76d187dadd4c137e894dcb593bf'
- 'e6446a786d939c98fcada57f9ae6de1f')
-
-build() {
- cd "$srcdir"/$pkgname-$pkgver
- # fix for better compression
- sed -i 's|TOO_FAR 4096|TOO_FAR 32767|' deflate.c
- make
-}
-
-package() {
- install -Dm755 "$srcdir"/$pkgname-$pkgver/$pkgname \
- "$pkgdir"/usr/bin/$pkgname
- install -Dm644 $srcdir/LICENSE \
- "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}