9fe6f381a53d892cf0c8a3653af3b07c36cbc021
[packages.git] / libs / libsndfile / Makefile
1 #
2 # Copyright (C) 2007-2010 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=libsndfile
11 PKG_VERSION:=1.0.25
12 PKG_RELEASE:=2
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
15 PKG_SOURCE_URL:=http://www.mega-nerd.com/libsndfile/files/
16 PKG_MD5SUM:=e2b7bb637e01022c7d20f95f9c3990a2
17
18 PKG_FIXUP:=libtool
19 PKG_INSTALL:=1
20
21 include $(INCLUDE_DIR)/package.mk
22
23 define Package/libsndfile
24   SECTION:=libs
25   CATEGORY:=Libraries
26   TITLE:=Library for reading/writing audio files
27   URL:=http://www.mega-nerd.com/libsndfile/
28   DEPENDS:=@!avr32
29 endef
30
31 define Package/libsndfile/description
32  libsndfile is a library of C routines for reading and writing files 
33  containing sampled audio data.
34 endef
35
36 CONFIGURE_ARGS+= \
37         --disable-alsa \
38         --disable-external-libs \
39         --disable-sqlite
40
41 CONFIGURE_VARS += \
42         ac_cv_sys_file_offset_bits=64 \
43         ac_cv_sys_large_files=yes \
44         ac_cv_sys_largefile_CFLAGS=-D_LARGFILE_SOURCE \
45         ac_cv_sys_largefile_LDFLAGS= \
46         ac_cv_sys_largefile_LIBS= \
47         ac_cv_sys_largefile_source=yes
48
49 TARGET_CFLAGS += $(FPIC)
50
51 define Build/InstallDev
52         $(INSTALL_DIR) $(1)
53         $(CP) $(PKG_INSTALL_DIR)/* $(1)/
54 endef
55
56 define Package/libsndfile/install
57         $(INSTALL_DIR) $(1)/usr/lib
58         $(CP) $(PKG_INSTALL_DIR)/usr/lib/libsndfile.so.* $(1)/usr/lib/
59 endef
60
61 $(eval $(call BuildPackage,libsndfile))