comparison src/vcdimager.mk @ 3632:4e78b4a9e87c

Add libcdio,mpcdec, vcdimager, a52dec, wavpack from mxe_devel * dist-files.mk: add libcdio.mk,libmpcdec-1-configure_ac.patch,libmpcdec.mk, vcdimager-* * index.html: add libcdio, libmpcdec, a52dec, wavpack * src/libcdio.mk: new file * src/libmpcdec-1-configure_ac.patch: new file * src/libmpcdec.mk: new file * src/vcdimager-1-configure.patch: new file * src/vcdimager.mk: new file * src/a52dec.mk: new file * src/wavpack-1-exec_prefix.patch: new file * src/wavpack.mk: new file
author John Donoghue <john.donoghue@ieee.org>
date Mon, 30 Jun 2014 06:10:45 -0400
parents
children
comparison
equal deleted inserted replaced
3631:f11ee3f8e632 3632:4e78b4a9e87c
1 # This file is part of MXE.
2 # See index.html for further information.
3
4 PKG := vcdimager
5 $(PKG)_IGNORE :=
6 $(PKG)_VERSION := 0.7.24
7 $(PKG)_CHECKSUM := 8c245555c3e21dcbc3d4dbb2ecca74f609545424
8 $(PKG)_SUBDIR := $(PKG)-$($(PKG)_VERSION)
9 $(PKG)_FILE := $(PKG)-$($(PKG)_VERSION).tar.gz
10 $(PKG)_URL := http://ftp.gnu.org/gnu/vcdimager/$(PKG)-$($(PKG)_VERSION).tar.gz
11 $(PKG)_DEPS := libcdio libxml2 popt
12
13 define $(PKG)_UPDATE
14 echo 'TODO: Updates for package vcdimager need to be written.' >&2;
15 echo $(vcdimager_VERSION)
16 endef
17
18 define $(PKG)_BUILD
19 cd '$(1)' && autoconf
20 cd '$(1)' && ./configure \
21 $(HOST_AND_BUILD_CONFIGURE_OPTIONS) \
22 --prefix='$(HOST_PREFIX)' \
23 $(ENABLE_SHARED_OR_STATIC)
24 $(MAKE) -C '$(1)' -j $(JOBS)
25 $(MAKE) -C '$(1)' -j 1 install
26 endef