blob: 88ae9496d918413b9df4656f0b86bbf654422dd5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# This file is part of MXE.
# See index.html for further information.
PKG := vcdimager
$(PKG)_IGNORE :=
$(PKG)_VERSION := 0.7.24
$(PKG)_CHECKSUM := 8c245555c3e21dcbc3d4dbb2ecca74f609545424
$(PKG)_SUBDIR := $(PKG)-$($(PKG)_VERSION)
$(PKG)_FILE := $(PKG)-$($(PKG)_VERSION).tar.gz
$(PKG)_URL := http://ftp.gnu.org/gnu/vcdimager/$(PKG)-$($(PKG)_VERSION).tar.gz
$(PKG)_DEPS := gcc libcdio libxml2 popt
define $(PKG)_UPDATE
echo 'TODO: Updates for package vcdimager need to be written.' >&2;
echo $(vcdimager_VERSION)
endef
define $(PKG)_BUILD
cd '$(1)' && autoconf
cd '$(1)' && ./configure \
$(MXE_CONFIGURE_OPTS)
$(MAKE) -C '$(1)' -j 1 install
endef
|