aboutsummaryrefslogtreecommitdiff
path: root/sound/madplay/Makefile
blob: 5c8c3ab88fccb04289eaaa2a948f3d7ac2eeb3d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
#
# Copyright (C) 2006-2015 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#

include $(TOPDIR)/rules.mk

PKG_NAME:=madplay
PKG_VERSION:=0.15.2b
PKG_RELEASE:=10

PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=@SF/mad \
	ftp://ftp.mars.org/pub/mpeg/
PKG_HASH:=5a79c7516ff7560dffc6a14399a389432bc619c905b13d3b73da22fa65acede0

PKG_MAINTAINER:=Simon Peter <probono@puredarwin.org>
PKG_LICENSE:=GPL-2.0-or-later
PKG_LICENSE_FILES:=COPYING

PKG_INSTALL:=1
PKG_BUILD_PARALLEL:=1

include $(INCLUDE_DIR)/package.mk
include $(INCLUDE_DIR)/nls.mk

define Package/madplay
  SECTION:=sound
  CATEGORY:=Sound
  DEPENDS:=+libid3tag +libmad $(INTL_DEPENDS) +alsa-lib
  TITLE:=MPEG audio player in fixed point - ALSA
  URL:=https://sourceforge.net/projects/mad
endef

define Package/madplay/description
	MAD is an MPEG audio decoder. It currently only supports the MPEG 1
	standard, but fully implements all three audio layers (Layer I, Layer II,
	and Layer III, the latter often colloquially known as MP3.). There is also
	full support for ID3 tags.
endef

CONFIGURE_ARGS += \
	--enable-shared \
	--disable-static \
	--disable-debugging \
	--disable-profiling \
	--disable-experimental \
	--without-esd \
	--with-alsa

CONFIGURE_VARS += \
	lt_prog_compiler_pic="$(FPIC)"

MAKE_FLAGS += CFLAGS="$(TARGET_CFLAGS)"

define Package/madplay/install
	$(INSTALL_DIR) $(1)/usr/bin
	$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/madplay $(1)/usr/bin/
endef

$(eval $(call BuildPackage,madplay))