[arch-commits] Commit in alure/repos (6 files)
Bartłomiej Piotrowski
bpiotrowski at nymeria.archlinux.org
Fri Jan 3 10:52:19 UTC 2014
Date: Friday, January 3, 2014 @ 11:52:19
Author: bpiotrowski
Revision: 103316
archrelease: copy trunk to community-i686, community-x86_64
Added:
alure/repos/community-i686/PKGBUILD
(from rev 103315, alure/trunk/PKGBUILD)
alure/repos/community-i686/build.patch
(from rev 103315, alure/trunk/build.patch)
alure/repos/community-x86_64/PKGBUILD
(from rev 103315, alure/trunk/PKGBUILD)
alure/repos/community-x86_64/build.patch
(from rev 103315, alure/trunk/build.patch)
Deleted:
alure/repos/community-i686/PKGBUILD
alure/repos/community-x86_64/PKGBUILD
------------------------------+
/PKGBUILD | 84 +++++++++++++++++++++++++++++++++++++++++
community-i686/PKGBUILD | 35 -----------------
community-i686/build.patch | 12 +++++
community-x86_64/PKGBUILD | 35 -----------------
community-x86_64/build.patch | 12 +++++
5 files changed, 108 insertions(+), 70 deletions(-)
Deleted: community-i686/PKGBUILD
===================================================================
--- community-i686/PKGBUILD 2014-01-03 10:46:04 UTC (rev 103315)
+++ community-i686/PKGBUILD 2014-01-03 10:52:19 UTC (rev 103316)
@@ -1,35 +0,0 @@
-# Maintainer: Lukas Fleischer <archlinux at cryptocrack dot de>
-# Contributor: Markus Martin <markus at archwyrm.net>
-
-pkgname=alure
-pkgver=1.2
-pkgrel=2
-pkgdesc='Utility library to help manage common tasks with OpenAL applications.'
-arch=('i686' 'x86_64')
-url='http://kcat.strangesoft.net/alure.html'
-license=('MIT')
-depends=('openal')
-makedepends=('cmake' 'libsndfile' 'libvorbis' 'flac' 'mpg123' 'dumb' 'fluidsynth')
-optdepends=('libsndfile: for uncompressed audio support'
- 'libvorbis: for OGG Vorbis support'
- 'flac: for FLAC support'
- 'mpg123: for MPEG support'
- 'dumb: for IT, XM, S3M and MOD support'
- 'fluidsynth: for SoundFont 2 support')
-source=("http://kcat.strangesoft.net/alure-releases/${pkgname}-${pkgver}.tar.bz2")
-md5sums=('3088aba074ad02d95ea51e705053b9f5')
-
-build() {
- cd "${srcdir}/${pkgname}-${pkgver}"
-
- cmake . -DCMAKE_INSTALL_PREFIX=/usr
- make
-}
-
-package() {
- cd "${srcdir}/${pkgname}-${pkgver}"
-
- make DESTDIR="${pkgdir}" install
-
- install -Dm0644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
-}
Copied: alure/repos/community-i686/PKGBUILD (from rev 103315, alure/trunk/PKGBUILD)
===================================================================
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-01-03 10:52:19 UTC (rev 103316)
@@ -0,0 +1,42 @@
+# Maintainer: Lukas Fleischer <archlinux at cryptocrack dot de>
+# Contributor: Markus Martin <markus at archwyrm.net>
+
+pkgname=alure
+pkgver=1.2
+pkgrel=3
+pkgdesc='Utility library to help manage common tasks with OpenAL applications.'
+arch=('i686' 'x86_64')
+url='http://kcat.strangesoft.net/alure.html'
+license=('MIT')
+depends=('openal')
+makedepends=('cmake' 'libsndfile' 'libvorbis' 'flac' 'mpg123' 'dumb' 'fluidsynth')
+optdepends=('libsndfile: for uncompressed audio support'
+ 'libvorbis: for OGG Vorbis support'
+ 'flac: for FLAC support'
+ 'mpg123: for MPEG support'
+ 'dumb: for IT, XM, S3M and MOD support'
+ 'fluidsynth: for SoundFont 2 support')
+source=("http://kcat.strangesoft.net/alure-releases/${pkgname}-${pkgver}.tar.bz2"
+ build.patch)
+md5sums=('3088aba074ad02d95ea51e705053b9f5'
+ '6a8dfd62ccae920d393b4202736aba46')
+
+prepare() {
+ cd $pkgname-$pkgver
+ patch -p1 -i ../build.patch
+}
+
+build() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+
+ cmake . -DCMAKE_INSTALL_PREFIX=/usr
+ make
+}
+
+package() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+
+ make DESTDIR="${pkgdir}" install
+
+ install -Dm0644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
+}
Copied: alure/repos/community-i686/build.patch (from rev 103315, alure/trunk/build.patch)
===================================================================
--- community-i686/build.patch (rev 0)
+++ community-i686/build.patch 2014-01-03 10:52:19 UTC (rev 103316)
@@ -0,0 +1,12 @@
+diff -rupN a/src/codec_fluidsynth.cpp b/src/codec_fluidsynth.cpp
+--- a/src/codec_fluidsynth.cpp 2011-07-29 08:37:48.000000000 +0000
++++ b/src/codec_fluidsynth.cpp 2014-01-03 10:42:13.280792235 +0000
+@@ -32,7 +32,7 @@
+ #endif
+
+ #include <istream>
+-
++#include <unistd.h>
+ #include <fluidsynth.h>
+
+
Deleted: community-x86_64/PKGBUILD
===================================================================
--- community-x86_64/PKGBUILD 2014-01-03 10:46:04 UTC (rev 103315)
+++ community-x86_64/PKGBUILD 2014-01-03 10:52:19 UTC (rev 103316)
@@ -1,35 +0,0 @@
-# Maintainer: Lukas Fleischer <archlinux at cryptocrack dot de>
-# Contributor: Markus Martin <markus at archwyrm.net>
-
-pkgname=alure
-pkgver=1.2
-pkgrel=2
-pkgdesc='Utility library to help manage common tasks with OpenAL applications.'
-arch=('i686' 'x86_64')
-url='http://kcat.strangesoft.net/alure.html'
-license=('MIT')
-depends=('openal')
-makedepends=('cmake' 'libsndfile' 'libvorbis' 'flac' 'mpg123' 'dumb' 'fluidsynth')
-optdepends=('libsndfile: for uncompressed audio support'
- 'libvorbis: for OGG Vorbis support'
- 'flac: for FLAC support'
- 'mpg123: for MPEG support'
- 'dumb: for IT, XM, S3M and MOD support'
- 'fluidsynth: for SoundFont 2 support')
-source=("http://kcat.strangesoft.net/alure-releases/${pkgname}-${pkgver}.tar.bz2")
-md5sums=('3088aba074ad02d95ea51e705053b9f5')
-
-build() {
- cd "${srcdir}/${pkgname}-${pkgver}"
-
- cmake . -DCMAKE_INSTALL_PREFIX=/usr
- make
-}
-
-package() {
- cd "${srcdir}/${pkgname}-${pkgver}"
-
- make DESTDIR="${pkgdir}" install
-
- install -Dm0644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
-}
Copied: alure/repos/community-x86_64/PKGBUILD (from rev 103315, alure/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD (rev 0)
+++ community-x86_64/PKGBUILD 2014-01-03 10:52:19 UTC (rev 103316)
@@ -0,0 +1,42 @@
+# Maintainer: Lukas Fleischer <archlinux at cryptocrack dot de>
+# Contributor: Markus Martin <markus at archwyrm.net>
+
+pkgname=alure
+pkgver=1.2
+pkgrel=3
+pkgdesc='Utility library to help manage common tasks with OpenAL applications.'
+arch=('i686' 'x86_64')
+url='http://kcat.strangesoft.net/alure.html'
+license=('MIT')
+depends=('openal')
+makedepends=('cmake' 'libsndfile' 'libvorbis' 'flac' 'mpg123' 'dumb' 'fluidsynth')
+optdepends=('libsndfile: for uncompressed audio support'
+ 'libvorbis: for OGG Vorbis support'
+ 'flac: for FLAC support'
+ 'mpg123: for MPEG support'
+ 'dumb: for IT, XM, S3M and MOD support'
+ 'fluidsynth: for SoundFont 2 support')
+source=("http://kcat.strangesoft.net/alure-releases/${pkgname}-${pkgver}.tar.bz2"
+ build.patch)
+md5sums=('3088aba074ad02d95ea51e705053b9f5'
+ '6a8dfd62ccae920d393b4202736aba46')
+
+prepare() {
+ cd $pkgname-$pkgver
+ patch -p1 -i ../build.patch
+}
+
+build() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+
+ cmake . -DCMAKE_INSTALL_PREFIX=/usr
+ make
+}
+
+package() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+
+ make DESTDIR="${pkgdir}" install
+
+ install -Dm0644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
+}
Copied: alure/repos/community-x86_64/build.patch (from rev 103315, alure/trunk/build.patch)
===================================================================
--- community-x86_64/build.patch (rev 0)
+++ community-x86_64/build.patch 2014-01-03 10:52:19 UTC (rev 103316)
@@ -0,0 +1,12 @@
+diff -rupN a/src/codec_fluidsynth.cpp b/src/codec_fluidsynth.cpp
+--- a/src/codec_fluidsynth.cpp 2011-07-29 08:37:48.000000000 +0000
++++ b/src/codec_fluidsynth.cpp 2014-01-03 10:42:13.280792235 +0000
+@@ -32,7 +32,7 @@
+ #endif
+
+ #include <istream>
+-
++#include <unistd.h>
+ #include <fluidsynth.h>
+
+
More information about the arch-commits
mailing list