diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2013-01-20 09:45:47 +0000 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2013-01-20 20:49:02 +0100 |
commit | 0e4d25ff0fc5d5698e148a53d751f5fc4b22860a (patch) | |
tree | 1cb8fc7ba9d8bfd954b38e1d095589f373b1c2a8 /package/multimedia/madplay/madplay.mk | |
parent | 4ebbd5f636d4fbe63b1a2c1c02aa0431e09effa8 (diff) | |
download | buildroot-novena-0e4d25ff0fc5d5698e148a53d751f5fc4b22860a.tar.gz buildroot-novena-0e4d25ff0fc5d5698e148a53d751f5fc4b22860a.zip |
packages: remove all := signs
Finally get rid of all := used for variable definitions in packages,
as we suggest in our manual and during the review of new packages.
While I was at it, I also sometimes added a few missing new lines
between the header and the first variable definition.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/multimedia/madplay/madplay.mk')
-rw-r--r-- | package/multimedia/madplay/madplay.mk | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/package/multimedia/madplay/madplay.mk b/package/multimedia/madplay/madplay.mk index 9055951cb..e80726c1f 100644 --- a/package/multimedia/madplay/madplay.mk +++ b/package/multimedia/madplay/madplay.mk @@ -3,11 +3,12 @@ # madplay # ############################################################# -MADPLAY_VERSION:=0.15.2b -MADPLAY_SOURCE:=madplay-$(MADPLAY_VERSION).tar.gz -MADPLAY_SITE:=http://downloads.sourceforge.net/project/mad/madplay/$(MADPLAY_VERSION) -MADPLAY_LIBTOOL_PATCH=NO -MADPLAY_DEPENDENCIES=libmad libid3tag + +MADPLAY_VERSION = 0.15.2b +MADPLAY_SOURCE = madplay-$(MADPLAY_VERSION).tar.gz +MADPLAY_SITE = http://downloads.sourceforge.net/project/mad/madplay/$(MADPLAY_VERSION) +MADPLAY_LIBTOOL_PATCH = NO +MADPLAY_DEPENDENCIES = libmad libid3tag # Check if ALSA is built, then we should configure after alsa-lib so # ./configure can find alsa-lib. |