Changeset 3c67532fc931b1feddf628264e1edc8ad01a8ee6
- Timestamp:
- 06/27/08 23:29:30
(2 months ago)
- Author:
- Pavlov Konstantin <thresh@videolan.org>
- git-committer:
- Pavlov Konstantin <thresh@videolan.org> 1214602170 +0400
- git-parent:
[0e91a89b9bdfc674f97f897916970b43b99fee9d]
- git-author:
- Pavlov Konstantin <thresh@videolan.org> 1214253108 +0400
- Message:
Contrib: add libschroedinger. Add some patches that would be dropped on next
libschroedinger release.
Contrib: fix fluidsynth distclean target.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| rdd39709 |
r3c67532 |
|
| 2412 | 2412 | CLEAN_FILE += .fluid |
|---|
| 2413 | 2413 | CLEAN_PKG += fluidsynth |
|---|
| 2414 | | DISTCLEAN_PKG += fluidsynth-$(NCURSES_VERSION).tar.gz |
|---|
| 2415 | | |
|---|
| | 2414 | DISTCLEAN_PKG += fluidsynth-$(FLUID_VERSION).tar.gz |
|---|
| | 2415 | |
|---|
| | 2416 | # *************************************************************************** |
|---|
| | 2417 | # liboil |
|---|
| | 2418 | # *************************************************************************** |
|---|
| | 2419 | |
|---|
| | 2420 | liboil-$(OIL_VERSION).tar.gz: |
|---|
| | 2421 | $(WGET) $(OIL_URL) |
|---|
| | 2422 | |
|---|
| | 2423 | liboil: liboil-$(OIL_VERSION).tar.gz |
|---|
| | 2424 | $(EXTRACT_GZ) |
|---|
| | 2425 | |
|---|
| | 2426 | .liboil: liboil |
|---|
| | 2427 | (cd $<; $(HOSTCC) ./configure $(HOSTCONF) --prefix=$(PREFIX) && make && make install) |
|---|
| | 2428 | touch $@ |
|---|
| | 2429 | |
|---|
| | 2430 | CLEAN_FILE += .liboil |
|---|
| | 2431 | CLEAN_PKG += liboil |
|---|
| | 2432 | DISTCLEAN_PKG += liboil-$(OIL_VERSION).tar.gz |
|---|
| | 2433 | |
|---|
| | 2434 | # *************************************************************************** |
|---|
| | 2435 | # Schroedinger library |
|---|
| | 2436 | # *************************************************************************** |
|---|
| | 2437 | |
|---|
| | 2438 | schroedinger-$(SCHROED_VERSION).tar.gz: |
|---|
| | 2439 | $(WGET) $(SCHROED_URL) |
|---|
| | 2440 | |
|---|
| | 2441 | schroedinger: schroedinger-$(SCHROED_VERSION).tar.gz |
|---|
| | 2442 | $(EXTRACT_GZ) |
|---|
| | 2443 | patch -d schroedinger -p1 < Patches/libschroedinger-fix-build-OSX.patch |
|---|
| | 2444 | patch -d schroedinger -p1 < Patches/libschroedinger-fix-build-OSX-test.patch |
|---|
| | 2445 | |
|---|
| | 2446 | .schroedinger: .liboil schroedinger |
|---|
| | 2447 | (cd $<; $(HOSTCC) ./configure $(HOSTCONF) --prefix=$(PREFIX) && make && make install) |
|---|
| | 2448 | touch $@ |
|---|
| | 2449 | |
|---|
| | 2450 | CLEAN_FILE += .schroedinger |
|---|
| | 2451 | CLEAN_PKG += schroedinger |
|---|
| | 2452 | DISTCLEAN_PKG += schroedinger-$(SCHROED_VERSION).tar.gz |
|---|
| 2416 | 2453 | |
|---|
| 2417 | 2454 | # *************************************************************************** |
|---|
| rdd39709 |
r3c67532 |
|
| 225 | 225 | YASM_URL=$(VIDEOLAN)/testing/contrib/yasm-$(YASM_VERSION).tar.gz |
|---|
| 226 | 226 | #YASM_URL=http://www.tortall.net/projects/yasm/releases/yasm-$(YASM_VERSION).tar.gz |
|---|
| | 227 | OIL_VERSION=0.3.14 |
|---|
| | 228 | OIL_URL=http://liboil.freedesktop.org/download/liboil-$(OIL_VERSION).tar.gz |
|---|
| | 229 | SCHROED_VERSION=1.0.3 |
|---|
| | 230 | SCHROED_URL=http://www.diracvideo.org/download/schroedinger/schroedinger-$(SCHROED_VERSION).tar.gz |
|---|