diff options
author | root <root@rshg054.dnsready.net> | 2012-06-08 19:39:26 +0000 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2012-06-08 19:39:26 +0000 |
commit | 63bd66056e59c02a988bf17876bd72e27bb4dc8b (patch) | |
tree | 9dc5a47228611569e90bbdf40b10943f0e5fc5aa /community | |
parent | 8735a5c54cf26dd5b5b686850f800a4aed49ff78 (diff) |
Fri Jun 8 19:39:26 UTC 2012
Diffstat (limited to 'community')
-rw-r--r-- | community/cwiid/PKGBUILD | 49 | ||||
-rw-r--r-- | community/cwiid/cwiid.install | 10 | ||||
-rw-r--r-- | community/ldc/PKGBUILD | 6 | ||||
-rw-r--r-- | community/lib32-libphobos-ldc/PKGBUILD | 57 | ||||
-rw-r--r-- | community/nginx/PKGBUILD | 10 | ||||
-rw-r--r-- | community/ogmrip/PKGBUILD | 10 | ||||
-rw-r--r-- | community/ogmrip/ogmrip.changelog | 3 | ||||
-rw-r--r-- | community/supercollider/PKGBUILD | 35 | ||||
-rw-r--r-- | community/supercollider/supercollider.install | 11 |
9 files changed, 178 insertions, 13 deletions
diff --git a/community/cwiid/PKGBUILD b/community/cwiid/PKGBUILD new file mode 100644 index 000000000..a98abf2e5 --- /dev/null +++ b/community/cwiid/PKGBUILD @@ -0,0 +1,49 @@ +# $Id: PKGBUILD 72056 2012-06-07 14:10:17Z speps $ +# Maintainer : speps <speps at aur dot archlinux dot org> +# Contributor: Ray Rashif <schiv@archlinux.org> +# Contributor: Wieland Hoffmann <the_mineo@web.de> +# Contributor: Birger Moellering <bmoellering@googlemail.com> +# 2012/03/21 : <dropped from community; broken + see bug #28344> +# 2012/06/05 : <added into community as supercollider dependency> + +pkgname=cwiid +pkgver=0.6.00 +pkgrel=12 +pkgdesc="Linux Nintendo Wiimote interface" +arch=('i686' 'x86_64') +url="http://abstrakraft.org/cwiid" +depends=('bluez' 'gtk2') +license=('GPL') +install="$pkgname.install" +source=("$url/downloads/$pkgname-$pkgver.tgz" + "$url/raw-attachment/ticket/70/bluez_4_api_changes.patch") +md5sums=('8d574afdeedc5e5309c87a72d744316a' + '19b288723d1f2b97a3e5288ab9de3313') + +build() { + cd "$srcdir/$pkgname-$pkgver" + + # bluez v4 compatibility + patch -Np1 -i "$srcdir/bluez_4_api_changes.patch" + + ./configure --prefix=/usr \ + --sysconfdir=/etc \ + --disable-ldconfig \ + --with-python=python2 + + LDFLAGS+="$(pkg-config --libs bluez) -lrt -pthread" make +} + +package() { + cd "$srcdir/$pkgname-$pkgver" + make DESTDIR="$pkgdir" install + + # fix static lib permissions + chmod 644 "$pkgdir/usr/lib/libcwiid.a" + + # wminput README + install -Dm644 wminput/README \ + "$pkgdir/usr/share/doc/$pkgname/wminput/README" +} + +# vim:set ts=2 sw=2 et: diff --git a/community/cwiid/cwiid.install b/community/cwiid/cwiid.install new file mode 100644 index 000000000..05e698be7 --- /dev/null +++ b/community/cwiid/cwiid.install @@ -0,0 +1,10 @@ +post_install() { + echo "==> In order to use wminput ensure you load the uinput kernel" + echo "==> module and have assigned correct access to /dev/uinput" +} + +post_upgrade() { + post_install +} + +# vim:set ts=2 sw=2 et: diff --git a/community/ldc/PKGBUILD b/community/ldc/PKGBUILD index ba9552118..444a91412 100644 --- a/community/ldc/PKGBUILD +++ b/community/ldc/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 72035 2012-06-06 13:48:23Z svenstaro $ +# $Id: PKGBUILD 72051 2012-06-07 08:44:48Z svenstaro $ # Maintainer: Sven-Hendrik Haase <sh@lutzhaase.com> pkgname=ldc -pkgver=20120606 -pkgrel=2 +pkgver=20120607 +pkgrel=1 pkgdesc="A D Compiler based on the LLVM Compiler Infrastructure including D runtime and libphobos2" arch=('i686' 'x86_64') url="http://www.dsource.org/projects/ldc" diff --git a/community/lib32-libphobos-ldc/PKGBUILD b/community/lib32-libphobos-ldc/PKGBUILD new file mode 100644 index 000000000..cc43715a9 --- /dev/null +++ b/community/lib32-libphobos-ldc/PKGBUILD @@ -0,0 +1,57 @@ +# $Id: PKGBUILD 72029 2012-06-06 11:58:40Z svenstaro $ +# Maintainer: Sven-Hendrik Haase <sh@lutzhaase.com> +pkgname=lib32-libphobos-ldc +pkgver=20120607 +pkgrel=1 +pkgdesc="libphobos for ldc (32-bit)" +arch=('x86_64') +url="http://www.dsource.org/projects/ldc" +license=('BSD') +depends=('llvm' 'libconfig') +makedepends=('git' 'cmake') +source=() +md5sums=() + +_gitroot=git://github.com/ldc-developers/ldc.git +_gitname=ldc +_gitbranch=llvm-3.1 + +build() { + cd "$srcdir" + msg "Connecting to GIT server...." + + if [[ -d "$_gitname" ]]; then + cd "$_gitname" && git pull origin + msg "The local files are updated." + else + git clone --branch "$_gitbranch" "$_gitroot" "$_gitname" + fi + + msg "GIT checkout done or server timeout" + msg "Starting build..." + + rm -rf "$srcdir/$_gitname-build" + git clone --recursive "$srcdir/$_gitname" "$srcdir/$_gitname-build" + cd "$srcdir/$_gitname-build" + + mkdir build && cd build + cmake \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -DINCLUDE_INSTALL_DIR=/usr/include/d/std-ldc \ + -DMULTILIB=ON \ + .. + make +} + +package() { + cd "$srcdir/$_gitname-build" + + cd build + make DESTDIR=$pkgdir install + cd .. + + # We don't want anything but the 32-bit libs + rm -rf $pkgdir/usr/{share,lib,include,bin} $pkgdir/etc + + install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE +} diff --git a/community/nginx/PKGBUILD b/community/nginx/PKGBUILD index 5713852c9..c045ceb98 100644 --- a/community/nginx/PKGBUILD +++ b/community/nginx/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 69838 2012-04-24 14:09:55Z bpiotrowski $ +# $Id: PKGBUILD 72049 2012-06-07 08:10:36Z bpiotrowski $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Maintainer: Bartłomiej Piotrowski <barthalion@gmal.com> # Contributor: Miroslaw Szot <mss@czlug.icis.pcz.pl> @@ -12,8 +12,8 @@ _user=http _group=http pkgname=nginx -pkgver=1.2.0 -pkgrel=2 +pkgver=1.2.1 +pkgrel=1 pkgdesc="lightweight HTTP server and IMAP/POP3 proxy server" arch=('i686' 'x86_64') depends=('pcre' 'zlib' 'openssl') @@ -34,7 +34,7 @@ backup=("etc/nginx/conf/fastcgi.conf" "etc/conf.d/nginx") source=("http://nginx.org/download/nginx-$pkgver.tar.gz" 'nginx') -md5sums=('a02ef93d65a7031a1ea3256ad5eba626' +md5sums=('ceacae12d66d1f021bf3737a0269b6f4' '0e8032d3ba26c3276e8c7c30588d375f') build() { @@ -61,7 +61,7 @@ build() { --http-scgi-temp-path=${_tmp_path} \ --http-uwsgi-temp-path=${_tmp_path} \ --with-pcre-jit \ - --with-http_realip_module + --with-http_realip_module --with-file-aio #--with-http_mp4_module \ #--with-http_realip_module \ #--with-http_addition_module \ diff --git a/community/ogmrip/PKGBUILD b/community/ogmrip/PKGBUILD index 6d616a9cd..0c0dfdc44 100644 --- a/community/ogmrip/PKGBUILD +++ b/community/ogmrip/PKGBUILD @@ -1,12 +1,12 @@ -# $Id: PKGBUILD 63682 2012-02-05 12:06:35Z ibiru $ +# $Id: PKGBUILD 72064 2012-06-07 19:51:29Z jlichtblau $ # Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org> # Contributor: Daenyth # Contributor: Allan McRae <allan@archlinux.org> # Contributor: Vrob (Markus Heuser) mheuser@mi.fu-berlin.de pkgname=ogmrip -pkgver=0.13.7 -pkgrel=3 +pkgver=0.13.8 +pkgrel=1 pkgdesc="Libraries and GTK2 interface for DVD ripping using mencoder" arch=('i686' 'x86_64') url="http://ogmrip.sourceforge.net/" @@ -25,9 +25,9 @@ optdepends=('faac: support for the AAC audio codec' 'tesseract: support for the SRT subtitle format') options=('!libtool' '!makeflags') changelog=$pkgname.changelog -install=ogmrip.install +install=$pkgname.install source=(http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.gz) -sha256sums=('362060e4c1944f020f9a491d9a8af53cd3bf4f94d4f5beb8d3d855ebf17d9c2a') +sha256sums=('ea6a75e6cc4fe7df1ed65648af208c87748959a6b372847b1005c3b92cc5a423') build() { cd "${srcdir}/${pkgname}-${pkgver}" diff --git a/community/ogmrip/ogmrip.changelog b/community/ogmrip/ogmrip.changelog index 1bd5c70ae..da70a7631 100644 --- a/community/ogmrip/ogmrip.changelog +++ b/community/ogmrip/ogmrip.changelog @@ -1,3 +1,6 @@ +2012-06-07 Jaroslav Lichtblau <dragonlord@aur.archlinux.org> + * ogmrip O.13.8-1 + 2012-01-26 Eric Belanger <eric@archlinux.org> * Rebuild against libpng 1.5 and libtiff 4.0 * Add .install file diff --git a/community/supercollider/PKGBUILD b/community/supercollider/PKGBUILD new file mode 100644 index 000000000..1dd29b70b --- /dev/null +++ b/community/supercollider/PKGBUILD @@ -0,0 +1,35 @@ +# $Id: PKGBUILD 72057 2012-06-07 14:10:55Z speps $ +# Maintainer : speps <speps at aur dot archlinux dot org> +# Contributor: <farid at archlinux-br.org> + +_name=SuperCollider +pkgname=supercollider +pkgver=3.5.2 +pkgrel=1 +pkgdesc="An environment and programming language for real time audio synthesis and algorithmic composition" +arch=('i686' 'x86_64') +url="http://supercollider.sourceforge.net/" +license=('GPL3') +depends=('jack' 'fftw' 'icu' 'cwiid' 'curl' 'qtwebkit') +makedepends=('cmake' 'ruby' 'vim' 'emacs') +optdepends=('emacs: emacs interface' + 'gedit: gedit interface' + 'vim: vim interface' + 'ruby: vim support') +install="$pkgname.install" +source=("http://download.sourceforge.net/project/$pkgname/Source/$pkgver/$_name-$pkgver-Source-linux.tar.bz2") +md5sums=('2bf4399ec9a7e37f155bafd018913bac') + +build() { + cd "$srcdir/$_name-Source" + + [ -d bld ] || mkdir bld && cd bld + cmake .. -DCMAKE_INSTALL_PREFIX=/usr \ + -DCMAKE_BUILD_TYPE=Release + make +} + +package() { + cd "$srcdir/$_name-Source/bld" + make DESTDIR="$pkgdir/" install +} diff --git a/community/supercollider/supercollider.install b/community/supercollider/supercollider.install new file mode 100644 index 000000000..78ec45794 --- /dev/null +++ b/community/supercollider/supercollider.install @@ -0,0 +1,11 @@ +post_install() { + update-mime-database usr/share/mime +} + +post_upgrade() { + post_install +} + +post_remove() { + post_install +}
\ No newline at end of file |