diff options
-rw-r--r-- | doc/index.html | 1 | ||||
-rw-r--r-- | src/libmad.mk | 47 | ||||
-rw-r--r-- | src/libsndfile.mk | 51 | ||||
-rw-r--r-- | src/sdl_net.mk | 50 | ||||
-rw-r--r-- | src/speex.mk | 48 |
5 files changed, 197 insertions, 0 deletions
diff --git a/doc/index.html b/doc/index.html index d5262fe..1acb6c8 100644 --- a/doc/index.html +++ b/doc/index.html @@ -679,6 +679,7 @@ pfexec python setup.py install</pre> <li>Martin Gerhardy</li> <li>Mark Brand</li> <li>Hans Bezemer</li> + <li>Gregory Smith</li> </ul> <p>(contact via the diff --git a/src/libmad.mk b/src/libmad.mk new file mode 100644 index 0000000..39bc621 --- /dev/null +++ b/src/libmad.mk @@ -0,0 +1,47 @@ +# Copyright (C) 2009 Volker Grabsch +# Gregory Smith +# +# Permission is hereby granted, free of charge, to any person obtaining +# a copy of this software and associated documentation files (the +# "Software"), to deal in the Software without restriction, including +# without limitation the rights to use, copy, modify, merge, publish, +# distribute, sublicense, and/or sell copies of the Software, and to +# permit persons to whom the Software is furnished to do so, subject +# to the following conditions: +# +# The above copyright notice and this permission notice shall be +# included in all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +# IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +# CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +# TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +# SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +# libmad +PKG := libmad +$(PKG)_IGNORE := +$(PKG)_VERSION := 0.15.1b +$(PKG)_CHECKSUM := cac19cd00e1a907f3150cc040ccc077783496d76 +$(PKG)_SUBDIR := libmad-$($(PKG)_VERSION) +$(PKG)_FILE := libmad-$($(PKG)_VERSION).tar.gz +$(PKG)_WEBSITE := http://www.underbit.com/products/mad/ +$(PKG)_URL := http://$(SOURCEFORGE_MIRROR)/project/mad/libmad/$($(PKG)_VERSION)/$($(PKG)_FILE) +$(PKG)_DEPS := gcc + +define $(PKG)_UPDATE + $(call SOURCEFORGE_FILES,http://sourceforge.net/projects/mad/files/libmad/) | \ + $(SED) -n 's,.*libmad-\([0-9][^>]*\)\.tar.*,\1,p' | \ + tail -1 +endef + +define $(PKG)_BUILD + $(SED) '/-fforce-mem/d' -i '$(1)'/configure + cd '$(1)' && ./configure \ + --host='$(TARGET)' \ + --disable-shared \ + --prefix='$(PREFIX)/$(TARGET)' + $(MAKE) -C '$(1)' -j '$(JOBS)' install +endef diff --git a/src/libsndfile.mk b/src/libsndfile.mk new file mode 100644 index 0000000..c390571 --- /dev/null +++ b/src/libsndfile.mk @@ -0,0 +1,51 @@ +# Copyright (C) 2009 Volker Grabsch +# Gregory Smith +# +# Permission is hereby granted, free of charge, to any person obtaining +# a copy of this software and associated documentation files (the +# "Software"), to deal in the Software without restriction, including +# without limitation the rights to use, copy, modify, merge, publish, +# distribute, sublicense, and/or sell copies of the Software, and to +# permit persons to whom the Software is furnished to do so, subject +# to the following conditions: +# +# The above copyright notice and this permission notice shall be +# included in all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +# IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +# CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +# TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +# SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +# libsndfile +PKG := libsndfile +$(PKG)_IGNORE := +$(PKG)_VERSION := 1.0.20 +$(PKG)_CHECKSUM := d4f88b919c644f54dd4038c4cf4fb2e7b0d32f7b +$(PKG)_SUBDIR := libsndfile-$($(PKG)_VERSION) +$(PKG)_FILE := libsndfile-$($(PKG)_VERSION).tar.gz +$(PKG)_WEBSITE := http://www.mega-nerd.com/libsndfile/ +$(PKG)_URL := http://www.mega-nerd.com/libsndfile/$($(PKG)_FILE) +$(PKG)_DEPS := gcc sqlite flac ogg vorbis + +define $(PKG)_UPDATE + wget -q -O- 'http://www.mega-nerd.com/libsndfile/' | \ + grep '<META NAME="Version"' | \ + $(SED) -n 's,.*CONTENT="libsndfile-\([0-9][^"]*\)">.*,\1,p' | \ + head -1 +endef + +define $(PKG)_BUILD + cd '$(1)' && ./configure \ + --host='$(TARGET)' \ + --disable-shared \ + --prefix='$(PREFIX)/$(TARGET)' \ + --enable-sqlite \ + --enable-external-libs \ + --disable-octave \ + --disable-alsa + $(MAKE) -C '$(1)' -j '$(JOBS)' install bin_PROGRAMS= sbin_PROGRAMS= noinst_PROGRAMS= man_MANS= html_DATA= +endef diff --git a/src/sdl_net.mk b/src/sdl_net.mk new file mode 100644 index 0000000..09be916 --- /dev/null +++ b/src/sdl_net.mk @@ -0,0 +1,50 @@ +# Copyright (C) 2009 Volker Grabsch +# Gregory Smith +# +# Permission is hereby granted, free of charge, to any person obtaining +# a copy of this software and associated documentation files (the +# "Software"), to deal in the Software without restriction, including +# without limitation the rights to use, copy, modify, merge, publish, +# distribute, sublicense, and/or sell copies of the Software, and to +# permit persons to whom the Software is furnished to do so, subject +# to the following conditions: +# +# The above copyright notice and this permission notice shall be +# included in all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +# IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +# CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +# TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +# SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +# SDL_net +PKG := sdl_net +$(PKG)_IGNORE := +$(PKG)_VERSION := 1.2.7 +$(PKG)_CHECKSUM := b46c7e3221621cc34fec1238f1b5f0ce8972274d +$(PKG)_SUBDIR := SDL_net-$($(PKG)_VERSION) +$(PKG)_FILE := SDL_net-$($(PKG)_VERSION).tar.gz +$(PKG)_WEBSITE := http://libsdl.org/projects/SDL_net/ +$(PKG)_URL := http://libsdl.org/projects/SDL_net/release/$($(PKG)_FILE) +$(PKG)_DEPS := gcc sdl + +define $(PKG)_UPDATE + wget -q -O- 'http://www.libsdl.org/cgi/viewvc.cgi/tags/SDL_net/?sortby=date' | \ + grep '<a name="' | \ + $(SED) -n 's,.*<a name="release-\([0-9][^"]*\)".*,\1,p' | \ + head -1 +endef + +define $(PKG)_BUILD + cd '$(1)' && ./configure \ + --host='$(TARGET)' \ + --disable-shared \ + --prefix='$(PREFIX)/$(TARGET)' \ + --with-sdl-prefix='$(PREFIX)/$(TARGET)' \ + --disable-sdltest \ + --disable-gui + $(MAKE) -C '$(1)' -j '$(JOBS)' install bin_PROGRAMS= sbin_PROGRAMS= noinst_PROGRAMS= +endef diff --git a/src/speex.mk b/src/speex.mk new file mode 100644 index 0000000..c320bb7 --- /dev/null +++ b/src/speex.mk @@ -0,0 +1,48 @@ +# Copyright (C) 2009 Volker Grabsch +# Gregory Smith +# +# Permission is hereby granted, free of charge, to any person obtaining +# a copy of this software and associated documentation files (the +# "Software"), to deal in the Software without restriction, including +# without limitation the rights to use, copy, modify, merge, publish, +# distribute, sublicense, and/or sell copies of the Software, and to +# permit persons to whom the Software is furnished to do so, subject +# to the following conditions: +# +# The above copyright notice and this permission notice shall be +# included in all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +# IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +# CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +# TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +# SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +# Speex +PKG := speex +$(PKG)_IGNORE := +$(PKG)_VERSION := 1.2rc1 +$(PKG)_CHECKSUM := 52daa72572e844e5165315e208da539b2a55c5eb +$(PKG)_SUBDIR := speex-$($(PKG)_VERSION) +$(PKG)_FILE := speex-$($(PKG)_VERSION).tar.gz +$(PKG)_WEBSITE := http://www.speex.org/ +$(PKG)_URL := http://downloads.xiph.org/releases/speex/$($(PKG)_FILE) +$(PKG)_DEPS := gcc + +define $(PKG)_UPDATE + wget -q -O- 'http://git.xiph.org/?p=speex.git;a=tags' | \ + grep '<a class="list name"' | \ + $(SED) -n 's,.*<a[^>]*>Speex-\([0-9][^>]*\)<.*,\1,p' | \ + head -1 +endef + +define $(PKG)_BUILD + cd '$(1)' && ./configure \ + --host='$(TARGET)' \ + --disable-shared \ + --prefix='$(PREFIX)/$(TARGET)' \ + --disable-oggtest + $(MAKE) -C '$(1)' -j '$(JOBS)' install bin_PROGRAMS= sbin_PROGRAMS= noinst_PROGRAMS= man_MANS= doc_DATA= +endef |